I am trying to extract hashtags from the tweet column in dataframe. For that, I am using extractall
with regex, but I am getting
ValueError: pattern contains no capture groups
Here is my code:
df['tweet.full_text'].str.extractall(r'#.*?(?=\s|$)')