I was trying to write a regex that accetps a string that has atleast 1 number 1 alphabet and 1 special character ,
/^[a-zA-Z][a-zA-Z][@#$%^& .. and a bu
var item = "1a$"; item.match(/^[0-9][a-zA-Z][^a-zA-Z0-9\s\t\n]$/)
That should work