我想知道是否可以匹配句子之外的单词。
这是我到目前为止的正则表达式:
/(exchange|occasion|second hand)/im
现在我只想在这句话之外匹配这些词:
交换价格的价格仅供参考。
但我不确定该怎么做。
答案 0 :(得分:3)
您可以在LHS上使用PCRE verb (*SKIP)(*FAIL)
to match and skip anything这样的替换:
/Shown prices, for exchange of ocassions are only for indication\.(*SKIP)(*F)|\b(exchange|occasion|second hand)\b/i