Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的字符串看起来像:CR,CA,CD,CA_CR或CD,CR,CA_CR
CR,CA,CD,CA_CR
CD,CR,CA_CR
我只需要在字母上匹配正则表达式CR(以便替换它)。而不是在CA_CR。我在这里消隐。
CR
CA_CR
使用单词边界:
/\bCR\b/g
如果你使用 ruby、perl 或任何其他支持零宽度否定后向断言的语言,试试这个:
s/(?<!CA_)CR/REPLACEMENT/g
它匹配不跟随“CA_”的“CR”。