Regular expression problem
I have the following regular expression:
(?!^[0-9]*$)(?!^[a-zA-Z]*$)^([a-zA-Z0-9]{6,32})$
it cheks the username to see if it does not have invalid characters
but the user should insert BOTH letters and numbers
i want it so the user enters just letters or just numbers too
|