The first character can be anything except '='.
I made the following RegEx:
[^=].
"ab", "b2" etc will pass. "=a" will not.
But the thing is, I also want to accept an empty character:
"a" should also be accepted. How can I do that?
Update
Sorry, the language is C#
You might wonder why I'm doing it. I have a URL RegEx
(?!=)((www.|(http|https|ftp)\://)[.a-z0-9-]+.[a-z0-9\/_:@=.+?,##%&~-]*[^.|\'|# |!|(|?|,| |>|<|;|)])
but I don't want the URL to be parsed if it's right after the '=' character.