仅当字符串不包含某个单词时才匹配

时间:2014-04-08 19:42:30

标签: regex

我想编写一个正则表达式来匹配句子中包含“商业智能”字样的情况。 但是,如果句子中包含“商业智能和分析”一词,我不希望返回匹配。

我尝试使用

      /Business Intelligence (?<! and Analytics)/

1 个答案:

答案 0 :(得分:1)

您应该使用否定前瞻:

/Business Intelligence(?! and Analytics)/
                        ^ I have removed the < from here