将 Regexpr 与 $ 一起使用
只是一个简单的问题,有谁知道如何将 regexpr 与 "\$" 一起使用?本质上,我想解析字符串并找出 \$ 之后的数值(例如“购买新床架可享受 50 美元折扣”)。
Just a quick question, does anyone know how to use regexpr with "\$" ? Essentially, I want to parse out strings and figure out what numeric value came after the \$ (for example "Get $50 off on purchases of new bed frames").
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在正则表达式中,
$
表示字符串的结尾,因此如果您想匹配实际的 $,则需要对其进行“转义”,例如\$
。在R中的
grep
中,需要使用\\
,如下:In regular expressions,
$
would denote the end of the string, and so if you want to match an actual $, you'd need to "escape" it, like\$
.In
grep
in R, you need to use\\
, as follows: