Here's the line I'm trying to parse:
@abc def@gmail.com @ghi j@klm @nop.qrs @tuv
And here's the regex I've gotten so far:
@[A-Za-z]+[^0-9. ]+\b | @[A-Za-z]+[^0-9. ]
My goal is to get ['@abc', '@ghi', '@tuv'], but no matter what I do, I can't get 'j@klm' to not match. Any help is much appreciated.