我有一个我需要找到的xml文件,乘以(例如1.25)并替换所有价格。
价格标签看起来像这样:
<price><![CDATA[15.9]]></price>
操作后价格标签应如下所示:
<price><![CDATA[19.875]]></price>
可以使用正则表达式在Notepad ++或PowerGrep中完成吗?
提前致谢。
答案 0 :(得分:0)
据我所知,你不能使用任何一个程序来预先形成数学,但是你可以用你选择的大多数语言构建一个简单的程序来使用正则表达式来查找数字。将该字符串强制转换为数学并将其放回字符串中。今天晚些时候我可能在c#中构建一些东西,但在大多数语言中它应该相对简单。您甚至可以构建一个shell脚本并使用grep,如果您不在Windows环境中或使用Powershell for windows但我对Powershell的经验较少。
编辑:有一种更简单的方法http://msdn.microsoft.com/en-us/library/hcebdtae(v=vs.110).aspx 这基本上就是你想用xmldocument对象做的事情。
Edit2:我做到了这一点,即使我无法抓住原始海报,我认为有人可能会使用这些信息并且我学到了很多东西。如果有人有兴趣,我可以将源代码添加到github。
public static void ChangePricesWork(string filepath, double multiply)
{
var document = new XmlDocument();
document.Load(filepath);
XmlNodeList nodeList = document.GetElementsByTagName("price");
foreach (XmlNode node in nodeList)
{
if (!string.IsNullOrEmpty(node.InnerText))
{
node.InnerText = Convert.ToString(multiplyPrice(multiply, node.InnerText));
}
}
string newFilePath = string.Format(@"{0}\{1}_updated.xml", Path.GetDirectoryName(filepath), Path.GetFileNameWithoutExtension(filepath));
document.Save(newFilePath);
}
private static double multiplyPrice(double multiply, string oldPrice)
{
var newPrice = new double();
if (Double.TryParse(oldPrice, out newPrice))
{
newPrice = newPrice * multiply;
}
return newPrice;
}
答案 1 :(得分:0)
Notepad ++有一个Pythonscript插件,允许您创建快速Python脚本,可以访问您的文档和Notepad ++本身。
this answer中描述了安装和设置。
从那时起,API已经发生了一些变化,你现在用Editor.rereplace替换正则表达式。
# Start a sequence of actions that is undone and redone as a unit. May be nested.
editor.beginUndoAction()
# multiply_price_cdata
from decimal import *
TWOPLACES = Decimal(10) ** -2
def multiply_price_cdata( m ):
price = Decimal( m.group(2) ) * Decimal( 1.25 )
return m.group(1) + str(price.quantize(TWOPLACES)) + m.group(3)
def cdata( m ):
return "CDATA"
# npp++ search/replace
re_price = r'(<price><!\[CDATA\[)(\d+\.\d+|\d+)(\]\]></price>)'
editor.rereplace( re_price , multiply_price_cdata )
# end the undo sequence
editor.endUndoAction()