Given this regexp:
@([a-z0-9_-]{3,})
I don't want it to match if the pattern is "SpecialUsername".
@Tom = match
@SpecialUsername = no match
@Another = match
etc
How do I modify it for this special case?
Given this regexp:
@([a-z0-9_-]{3,})
I don't want it to match if the pattern is "SpecialUsername".
@Tom = match
@SpecialUsername = no match
@Another = match
etc
How do I modify it for this special case?
(?!SpecialUsername)([a-z0-9_-]{3,})