I would like to get all occurrences of
@something
bounded by any nonalphanumeric character or space.
I tried
[^A-Za-z0-9\s]@(\S)[^A-Za-z0-9]
but it keeps including space after word.
I'll be glad for any help, thanks.
Edit: So issue would be clear, I want to get match from
Line start @word1 something @word2,@word3
all '@word1', '@word2', '@word3'