标签: regex r
我有一个字符串,其中包含hastag / pound / octothorpe,并希望使用正则表达式删除它。
e.g。
iii <- '#lkdjljf, lkdflsdkf'
我想要gsub(regex_bit_here,'',iii)
gsub(regex_bit_here,'',iii)
删除hastag / pound / octothorpe
由于
答案 0 :(得分:2)
我已经尝试了gsub("^#",'',iii),但它确实有效
gsub("^#",'',iii)