i want a regular expression that contains alpha and numeric characters and must be at least 8 characters.all can be alpha or numeric.my expression is
^[a-zA-Z0-9]*$
kindly correct it it is not taking 8 characters and i m using it first time
i want a regular expression that contains alpha and numeric characters and must be at least 8 characters.all can be alpha or numeric.my expression is
^[a-zA-Z0-9]*$
kindly correct it it is not taking 8 characters and i m using it first time
You can use:
^[a-zA-Z0-9]{8,}$