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
This should do the trick:
[a-zA-Z]{2,}