4
如何讓lookahead非貪婪?我想第一個案例不匹配任何東西(比如第二個案例),但它返回「winnie」。我猜是因爲它是在「the」之後貪婪地匹配?Lookahead行爲
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)
Oooh和那麼多✩點✪現在我已經看到了ツ☕☕在你的50k或100k的生日當然! –
@ Jonny5哈哈哈,你是最受歡迎的:)☕<===我們怎麼把這個放在這裏!!!!!!!! – vks
ツ從[☢here☣]得到了它(http://text-symbols.com/cool/)@vks –