Whats the best way to test a format validation of lets says a username, with a regex for alphanumeric, but not purely numeric?
I\'ve been using the following validat
You want to 'look ahead' for a letter:
/\A(?=.*[a-z])[a-z\d]+\Z/i