gpt4 book ai didi

regex - 为什么在R中使用lookbehinds的正则表达式无效?

转载 作者:行者123 更新时间:2023-12-03 21:56:33 27 4
gpt4 key购买 nike

我正在尝试在R中进行正则表达式查找,以查找模式。我希望这会在'bob'中拉出'b',但是我得到了一个错误。

> regexpr("(?<=a)b","thingamabob")
Error in regexpr("(?<=a)b", "thingamabob") :
invalid regular expression '(?<=a)b', reason 'Invalid regexp'


这不会引发错误,但是也找不到任何东西。

> regexpr("(.<=a)b","thingamabob")
[1] -1
attr(,"match.length")
[1] -1
attr(,"useBytes")
[1] TRUE


我很困惑,因为regexpr的帮助页面专门指出了lookbehind应该可以工作: http://stat.ethz.ch/R-manual/R-patched/library/base/html/regex.html

有任何想法吗?

最佳答案

您只需通过设置perl = TRUE切换到PERL正则表达式。

关于regex - 为什么在R中使用lookbehinds的正则表达式无效?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13420391/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com