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
I'm pretty sure you can just use [A-z] instead of the [a-zA-Z] to get small and upper case alpha chars http://www.w3schools.com/jsref/jsref_obj_regexp.asp