标签: r regex
假设我有以下文字:
text ='祝你有个美好的一天,@ hello,先生'
如何在R?
答案 0 :(得分:1)
一个选项使用gsub:
gsub
text <- 'have a nice day, @hello, mr burs' x <- gsub('.*(@\\w+).*', '\\1', text) x [1] "@hello"