我正在编写一个正则表达式来匹配不是“foo”和“bar”的任何东西。我发现如何匹配任何东西,但一个字在
Regular expression to match string not containing a word?,但我不是很熟练的正则表达式,我不知道如何添加一个第二个字的这个critera。
任何帮助将不胜感激!
澄清:
我想匹配任何不是最好的foo或酒吧。
回答这个问题:“正则表达式匹配任何不是”foo“和”bar“?
原文链接:https://www.f2er.com/regex/357553.html^(?!foo$|bar$).*
会做到这一点
^ # Start of string (?! # Assert that it's impossible to match... foo # foo,followed by $ # end of string | # bar$ # bar,followed by end of string. ) # End of negative lookahead assertion .* # Now match anything
您可能需要设置RegexOptions.Singleline如果您的字符串可以包含您也希望匹配的换行符。