R gsub 通配符
我想从字符表达式(R 中)中删除“*”。在阅读帮助页面并尝试谷歌之后,我对 gsub 的复杂性还不够了解。有人可以建议我如何做到这一点吗?
谢谢,
乔纳森。
I'd like to delete a "*" from a character expression (in R). I am not up to speed sufficiently with the intricacies of gsub after reading the help page and trying google. Could someone suggest how I might do this?
Thanks,
Jonathan.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要转义两次:一次用于 R,一次用于正则表达式。
You need to escape twice: once for R and once for the regexp.
其他可能性是:
Other possibilities would be: