Validate values with one or two letters + 6 digits
The following regular expression can be used to validate values that start with one or two letters plus 6 digits:
^[A-Z]{1,2}[0-9]{6}$
Iniciar sesión para dejar un comentario.
The following regular expression can be used to validate values that start with one or two letters plus 6 digits:
^[A-Z]{1,2}[0-9]{6}$
Iniciar sesión para dejar un comentario.