作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想使用环视匹配字符串的一部分,但前提是该行中不包含其他单词。
Some bears live and eat in the woods.
/(?<=\blive and\b).*?(?=\bwoods\b)/
Some animals live and eat in the woods, like bears.
Some animals live and eat bears in the woods.
最佳答案
这是有问题的,因为大多数 flavor 不支持可变长度的后视,因此您无法检查整行。一个简单的方法是匹配整行而不是使用环视:
^(?!.*\bbears\b).*?\blive and\b(.*?)\bwoods\b
/m
),而不是设置单行标志(点全部或
/s
)。
\bbears\b
过滤掉行。 , 并匹配想要的字符串。
关于RegEx - 与条件环视匹配?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6092982/
我想在基于 DFA 的正则表达式匹配器中实现“词边界”匹配。谁能告诉我这是怎么做到的? 为了提供一些背景知识,我目前正在使用“dk.brics.automaton”库,但它不支持断言(例如 \b,字边
我是一名优秀的程序员,十分优秀!