从R中的字符串中删除hastag / pound / octothorpe

时间:2016-07-03 00:30:35

标签: regex r

我有一个字符串,其中包含hastag / pound / octothorpe,并希望使用正则表达式删除它。

e.g。

iii <- '#lkdjljf, lkdflsdkf'

我想要gsub(regex_bit_here,'',iii)

删除hastag / pound / octothorpe

由于

1 个答案:

答案 0 :(得分:2)

我已经尝试了gsub("^#",'',iii),但它确实有效