作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
你怎样才能使前瞻非贪婪?我希望第一个案例不匹配任何内容(如第二个案例),但它返回“winnie”。我猜是因为它在“the”之后贪婪地匹配?
str <- "winnie the pooh bear"
## Unexpected
regmatches(str, gregexpr("winnie|bear(?= bear|pooh)", str, perl=T))
# [1] "winnie"
## Expected
regmatches(str, gregexpr("winnie(?= bear|pooh)", str, perl=T))
# character(0)
最佳答案
前瞻应用于 bear
在 winnie|bear(?= bear|pooh)
而不是 winnie
.如果您希望它适用于两种用途
(?:winnie|bear)(?= bear|pooh)
winnie
匹配
ored part bear
从来没有出现过,也没有前瞻。
lookahead
适用于
winnie
.所以它失败了。
关于regex - 前瞻行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30832006/
我有一个看起来像这样的字符串: text = "9) 9 的文本\r\n10) 10 的文本\r\n11) 11 的文本\r\n12) ...\r\n123) 123 的文本" 我正在尝试将其拆分如下
下一代的 3D Tiles 前瞻 原文:Introducing 3D Tiles Next, Streaming Geospatial to the Metaverse 原文发布时间:2021年11月
我有一个使用正则表达式回顾的 string.replace() 函数。 myString.replace(/(?
我是一名优秀的程序员,十分优秀!