How would you create a regular expression for a value that should contain at least one number? The user can enter any special character, letter etc., but should contain at l
An easier solution would be to retain your existing regex, then create two new regexes to test for your "at least one alphabetic" and "at least one numeric".