我想编写一个正则表达式来匹配句子中包含“商业智能”字样的情况。 但是,如果句子中包含“商业智能和分析”一词,我不希望返回匹配。
我尝试使用
/Business Intelligence (?<! and Analytics)/
答案 0 :(得分:1)
您应该使用否定前瞻:
/Business Intelligence(?! and Analytics)/
^ I have removed the < from here