Is the regular expression [a-Z] valid and if yes then is it the same as [a-zA-Z]? Please note that in [a-Z] the a is lowercase and the Z is uppercase.
a
E
No, it's not valid, probably because the ASCII values are not consecutive from z to A.