I'm using this regex:
^(?!.*&#.*)[a-zA-Z0-9!@_'?., `#$&()-\\\\/:"]*$
but it is accepting following characters: *=+[;<>
How do I disallow them? I tried adding this (?!.*(~%^*=+[{}]|;<>)) but it didn't work!
|
I'm using this regex:
but it is accepting following characters: |
||||
| show 1 more comment |
|
Make sure to escape the
|
|||||||
|
&and"have no meaning within a character class like that. I am also confused because you negative lookahead disallows&yet you also have it in the regex as an allowable character class. – Mike Brant Feb 26 at 0:13&and#are allowed but not the substring&#. – John Kugelman Feb 26 at 0:14