How to match a pattern that is not after a specified character?
Let's say the specified character is a space and we want to match @match
Eg: @match - finds "@match", because no space before it
@match and @match - finds the first @match but not the second one because there is a space before it.
ANTHING@match - should also find "@match", because no space before it.