I wrote below Regular Expression and getting this result but in the result I want to exclude say any special character ("@" or "#") etc .
result = re.findall(r"@\w*",text)
text- "Retweets for @cash"
Result= @cash
Expected - cash
Please guide how can I do this:
I was able to find the correct expression but not able to understand
re.findall(r'(?<=@)\w+',text)