extract string using same pattern in a text using R

前端 未结 2 1440
-上瘾入骨i
-上瘾入骨i 2021-01-24 07:46

I\'m trying to deal with text with R and here is my question.

From this source text

#Pray4Manchester# I hope that #ArianaGrande# will be better soon.
         


        
2条回答
  •  情话喂你
    2021-01-24 08:25

    We can do

    str_extract_all(text, "(?<=#)\\w*(?=#)")[[1]]
    #[1] "Pray4Manchester" "ArianaGrande"   
    

    data

    text <- "#Pray4Manchester# I hope that #ArianaGrande# will be better soon."
    

提交回复
热议问题