I’m trying to make a regex to match any ending except ClaroArgentina
So, this should not match: https://twitter.com/#!/ClaroArgentina
But this should be a match: https://twitter.com/#!/asdasd
Im trying to make it work with this, but its not giving me results:
https\://twitter\.com/(^ClaroArgentina)
What im trying to archieve in that regex is to match on everything but not ClaroArgentina.
You can use a negative lookahead in most languages.