我有一个类似下面的字符串,我想用一个函数的输出替换FieldNN实例。
到目前为止,我已经能够用函数的输出替换NN实例。但我不确定如何删除具有相同正则表达式的静态“字段”部分。
输入字符串:
(Field30="2010002257") and Field1="yuan" not Field28="AAA"
必需的输出:
(IncidentId="2010002257") and Author="yuan" not Recipient="AAA"
这是我到目前为止的代码:
public string translateSearchTerm(string searchTerm) {
string result = "";
result = Regex.Replace(searchTerm.ToLower(), @"(?<=field).*?(?=\=)", delegate(Match Match) {
string fieldId = Match.ToString();
return String.Format("_{0}", getFieldName(Convert.ToInt64(fieldId)));
});
log.Info(String.Format("result={0}", result));
return result;
}
给出:
(field_IncidentId="2010002257") and field_Author="yuan" not field_Recipient="aaa"
我想解决的问题是:
我真的只需要解决第一个问题,其他三个是奖励,但是一旦我找到了正确的空格和引号模式,我就可以解决这些问题。
更新
我认为下面的模式解决了问题2.和4.
result = Regex.Replace(searchTerm, @"(?<=\b(?i:field)).*?(?=\s*\=)", delegate(Match Match)
答案 0 :(得分:0)
要修复第一个问题,请使用组而不是正面的后视:
public string translateSearchTerm(string searchTerm) {
string result = "";
result = Regex.Replace(searchTerm.ToLower(), @"field(.*?)(?=\=)", delegate(Match Match) {
string fieldId = Match.Groups[1].Value;
return getFieldName(Convert.ToInt64(fieldId));
});
log.Info(String.Format("result={0}", result));
return result;
}
在这种情况下,“field”前缀将包含在每个匹配中,并将被替换。