Problem : Need to enter password in which there may be atleast one special character between 2 to 6 position of input string I dont need this in Javascript (Need only regular expression)
Problem : Need to enter password in which there may be atleast one special character between 2 to 6 position of input string I dont need this in Javascript (Need only regular expression)
Hi.... use this expression.. [a-z,0-9]{2}[special characters][a-z,0-9]{4}[special characters][a-z,0-9]* 1st 2 char are from a to z or 0 to 9... [special characters] -- define special char here same for the next chars...