I need a regular expression which should have at least one numeric character, both uper and lower case letters allowed, special characters also allowed I am using this expression
/^.*(?=.{6,10})(?=.*\d)(?=.*[a-zA-Z]).*$
but it is not valid for max characters 10.