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.
有没有办法在不使用的情况下向前/向后查看子字符串initial(?!.*(substring))?即,如果您无法访问perl,您如何搜索“initial”,然后使用正则表达式删除其后任何位置具有“substring”的任何匹配项?
initial(?!.*(substring))
如果您搜索两个匹配项: (1)initial和 (2) initial.*substring,那么根据这两个结果您知道是否存在这样的匹配项。如果找到第一个匹配项而第二个未找到,则您的字符串包含“初始”,前面没有“子字符串”...
initial
initial.*substring