您可以继续讨论
(?<!:):(?!:)。这使用两个否定的环视(回溯和回溯),它们断言有效匹配只有一个冒号,在它之前或之后没有冒号。
解释模式:
(?<!:) # assert that the previous character is not a colon: # match a literal : character(?!:) # assert that the next character is not a colon
这两种环视都是必需的,因为如果只有后向,则正则表达式引擎将匹配其中的第一个冒号
::(因为前一个字符不是冒号),如果只有前瞻,则第二个冒号将匹配(因为下一个字符不是冒号)。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)