I need to determine if a string contains two or more consecutive alpha chars. Two or more [a-zA-Z] side by side. Example:
[a-zA-Z]
\"ab\" -> valid \"a
Personnaly (as a nooby) I've used:
[0-9][0-9]+.
But the one from Simon, is way better ! =D