i am trying to create a regular expression which is not allow semi colon, colon single quote and double quote
var address=/^[\u0022\u0027\u003A\u003B]{1,50}$/
address.test(value);
this my code
this code is run only when textbox contain only ; : ' "
if ;123 this code is not run
please help me
/^[^;'"]{1,50}$/– Rob W May 1 '12 at 9:28