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
You can use lookaheads:
/^(?=.*?[a-z])(?=.*?\d)(?=.*?[...])/i
[...] should hold the special characters you want.
[...]