我正在使用C#在Visual Studios 2013 Express中编写正则表达式。我试图在每个包含单词的字符串周围加上单引号!@#$%^& *()_-除了:
这是我的正则表达式及其作用的示例: https://regex101.com/r/nI1qP0/1
我想在捕获组周围放置单引号,并保持非捕获组不变。我知道这可以通过外观完成,但我不知道如何。
答案 0 :(得分:1)
您可以使用此正则表达式:
(?:'[^']*'|(?:\b(?:(?:not)?empty|currentdate)\(\)|and|or|not))|([!@#$%^&*_.\w-]+)
此处忽略的匹配未被捕获,并且可以使用Match.Groups[1]
检索要引用的字词。然后,您可以在Match.Groups[1]
周围添加引号,并根据需要替换整个输入。
答案 1 :(得分:1)
您需要使用匹配评估程序或回调方法。关键是你可以在这个方法中检查匹配和捕获的组,并根据你的模式决定采取什么行动。
所以,添加这个回调方法(如果调用方法是非静态的,可能是非静态的):
public static string repl(Match m)
{
return !string.IsNullOrEmpty(m.Groups[1].Value) ?
m.Value.Replace(m.Groups[1].Value, string.Format("'{0}'", m.Groups[1].Value)) :
m.Value;
}
然后,使用overload of Regex.Replace
with the match evaluator (=callback method):
var s = "'This is not captured' but this is and not or empty() notempty() currentdate() capture";
var rx = new Regex(@"(?:'[^']*'|(?:\b(?:(?:not)?empty|currentdate)\(\)|and|or|not))|([!@#$%^&*_.\w-]+)");
Console.WriteLine(rx.Replace(s, repl));
请注意,您可以使用lambda表达式缩短代码:
Console.WriteLine(rx.Replace(s, m => !string.IsNullOrEmpty(m.Groups[1].Value) ?
m.Value.Replace(m.Groups[1].Value, string.Format("'{0}'", m.Groups[1].Value)) :
m.Value));
请参阅IDEONE demo
答案 2 :(得分:1)
而不是试图忽略字符串和!@#$%^& *()_-在其中,我只是将它们包含在我的搜索中,在任一端放置一个额外的单引号,然后删除所有两个单引号的实例如下:
// Find any string of words and !@#$%^&*()_- in and out of quotes.
Regex getwords = new Regex(@"(^(?!and\b)(?!or\b)(?!not\b)(?!empty\b)(?!notempty\b)(?!currentdate\b)([\w!@#$%^&*())_-]+)|((?!and\b)(?!or\b)(?!not\b)(?!empty\b)(?!notempty\b)(?!currentdate\b)(?<=\W)([\w!@#$%^&*()_-]+)|('[\w\s!@#$%^&*()_-]+')))", RegexOptions.IgnoreCase);
// Find all cases of two single quotes
Regex getQuotes = new Regex(@"('')");
// Get string from user
Console.WriteLine("Type in a string");
string search = Console.ReadLine();
// Execute Expressions.
search = getwords.Replace(search, "'$1'");
search = getQuotes.Replace(search, "'");