正则表达式regep几种"零宽断言"的总结
不知道翻译成零宽断言是否合适,但是看到一些中文资料是这么叫的。
反正就是(?=...)、(?!...)、(?<=...)、(?<!...) 这4种形式。
根据查询的方向,可以分为 look ahead 和look behind
根据匹配的类型,可以分为positive 和negative
以上两两组合,形成四种形式,即:
look ahead assertion 对应 (?=...)
negative look ahead assertion 对应 (?!...)
look behind assertion 对应 (?<=...)
negative look behind assertion 对应 (?<!...)
为便于记忆,结合编程语言的一些通用的用法,可以认为=表示positive,!表示negative,只要出现<就表示look behind,否则表示look ahead
如上。
啦啦啦!!!