Question
regular expression validation
i have a form password to be server validated
the password needs to be at least 8 characters with at least 1 being numeric.
this expression example that i found is supposed to be 6-8 characters with at least 1 letter
/^(?![0-9]{6,8})[0-9a-zA-Z]{6,8}$/
can anyone help change this expression to match my requirements?
i can see the {6,8} being {8,9} but not sure of the other changes?
thanks for your help
jim balthrop
the password needs to be at least 8 characters with at least 1 being numeric.
this expression example that i found is supposed to be 6-8 characters with at least 1 letter
/^(?![0-9]{6,8})[0-9a-zA-Z]{6,8}$/
can anyone help change this expression to match my requirements?
i can see the {6,8} being {8,9} but not sure of the other changes?
thanks for your help
jim balthrop
