gpt4 book ai didi

regex - 如何在 R 中粘贴 "backslash-dot"(\.) 组合?

转载 作者:行者123 更新时间:2023-12-01 07:43:47 24 4
gpt4 key购买 nike

作为标题,我现在正在用 R 编写一些 gregexpr,我需要搜索以点开头的内容,所以我需要使用“.” (不带引号),但 R 一直说这是一个无法识别的转义。我能做什么?

谢谢!

最佳答案

您需要转义反斜杠。

> string <- c("foo","ba.r")
> grep("\.",string)
Error: '\.' is an unrecognized escape in character string starting "\."
> grep("\\.",string)
[1] 2

关于regex - 如何在 R 中粘贴 "backslash-dot"(\.) 组合?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4020136/

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