I would like to keep just words that start with '@' and continue with letters or dots. Basically I have done opposite that I can match such a words but don't know how to match everything besides this match. So basically just keep those that starts with '@'. So far I have this patter:
(@[a-zA-Z0-9.]+\b)
I tried to use '?!' but it doesn't work. Thanks!