Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
只是一个简单的问题,有人知道如何将正则表达式与 "\$" 一起使用吗?本质上,我想解析字符串并找出 \$ 之后的数值(例如“购买新床架可获得 50 美元的折扣”)。
在正则表达式中,$将表示字符串的结尾,因此如果要匹配实际的 $,则需要“转义”它,例如\$.
$
\$
在grepR 中,你需要使用\\,如下:
grep
\\
x <- "Get $50 off on purchases of new bed frames" grep("\\$\\d+", x)