Match without adding it to the Overall match (匹配但是不把它添加到整体匹配中)

前端之家收集整理的这篇文章主要介绍了Match without adding it to the Overall match (匹配但是不把它添加到整体匹配中)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

需求:

匹配My <b>cat</b> is furry中的cat


方法

(?<=<b>)\w+(?=</b>)


小结:

1. 回顾类型

逆向正面回顾 (?<=)

逆向反面回顾(?<!)

正向正面回顾(?=)

正向反面回顾(?!)

原文链接:https://www.f2er.com/regex/361818.html

猜你在找的正则表达式相关文章