例如,匹配不包含“foo”但包含“bar”的字符串的正则表达式.我没有使用两个表达式的奢侈.我需要在一个表达式中完成它.
例:
“this is foo baz bar” – should not match
“this is foo baz” – should
not match
“this is baz bar” – should match
我在Perl,fwiw