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.
我一直在尝试提出一个执行以下操作的正则表达式搜索字符串,但没有运气:
字符串包含ipth但不包含bipth。 xipth是可以接受的。该字符串可以包含“ipth”之前或之后的任何内容。
ipth
bipth
xipth
有什么线索吗?
您可以使用此正则表达式
([^b]|^)ipth
使用负面的回顾:
(?<!b)ipth
正则表达式的(?<!b)意思是“前面的字符不能是b”。
(?<!b)
b
后视也匹配输入的开始,所以这个表达式也匹配ipth输入的开始。