I was wondering if anyone has a quick solution to extracting hashtags from the tweets in R.
For example, given the following string, how can I parse it to extract the word with the hashtag?
string <- 'Crowdsourcing is awesome. #stackoverflow'
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Unlike HTML, I expect you probably can parse hashtags with regex.
Which yields:
Note that this also works unmodified if
stringis actually a vector of many tweets. It returns a list of character vectors.