vote up 5 vote down star

is the regex [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 capital

Edit:

i received some answers specifiying that while [a-Z] is not valid then [A-z] is valid (but wont be the same as [a-zA-Z]) and this is really what i was looking for. since i wanted to know in general if its possible to replace [a-zA-Z] with a more compact version. thanks for all who contributed to the answer.

flag

7 Answers

vote up 15 vote down check

No, a (97) is higher than Z (90). [a-Z] isn't a valid character class. However [A-z] wouldn't be equivalent either, but for a different reason. It would cover all the letters but would also include the characters between the uppercase and lowercase letters: [\]^_` .

link|flag
Adding link to web.cs.mun.ca/~michael/c/ascii-table.html for reference, beat me by 15 seconds ;) - Fast fingers... +1 – gnarf Nov 2 at 0:11
That isn't what he asked though. – Kinopiko Nov 2 at 0:12
Yes it is... [a-Z] is invalid because Z comes before a – gnarf Nov 2 at 0:14
2  
I explained why both [a-Z] and [A-z] are invalid. Don't downvote me for doing extra credit. :-) – John Kugelman Nov 2 at 0:19
1  
It was perfectly clear to me. No muddy waters. – vmarquez Nov 2 at 0:25
show 5 more comments
vote up 2 vote down

You could always try it:

 print "ok" if "monkey" =~ /[a-Z]/;

Perl says

Invalid [] range "a-Z" in regex; marked by <-- HERE in m/[a-Z <-- HERE ]/ at a-z.pl line 4.
link|flag
Exactly what I said. My favorite saying is "try it 'n c" because if you happen to be developing in C at the time it has two meanings. – Shhnap Nov 2 at 0:07
3  
I don't like "try it and see" because if he had tried [A-z] there'd be no error message but it wouldn't work right either. – John Kugelman Nov 2 at 0:09
This is because in ASCII, uppercase comes first. So, [A-z] is valid, but [a-Z] is not. – jheddings Nov 2 at 0:09
But he's not asking that question. The question is very clear. Why are you deliberately misinterpreting it? – Kinopiko Nov 2 at 0:18
vote up 2 vote down

i'm not sure about other languages' implementations, but in php you can do

"/[a-z]/i"

and it will case insensitive. There is probably something similar for other languages.

link|flag
Most of PHP's features come from Perl, including this one. (PHP used to be written in Perl. Actually one of the P's used to stand for Perl) – Brad Gilbert Nov 2 at 1:33
vote up -2 vote down

Um, why not try it and find out. It looks like it should be and it looks like it should match.

Try:

string = "AbCdefG"
string =~ s/[a-Z]+//g

And see if that works. That will tell you straight away. You should end up with the empty string.

link|flag
This misses the fail case for most regex engines. a-z is not back to back with A-Z in ascii. – Stefan Kendall Nov 2 at 0:16
...and just because it "works" it doesn't mean that it will not match too much, which is the case if you do [A-z] (will also accept some punctuation). – Lucero Dec 8 at 23:22
vote up 1 vote down

No its not valid probably because the acsii values are not consecutive from z to A

link|flag
vote up 2 vote down

You don't specify what language, but in general [a-Z] won't be a valid range, as in ASCII the lower-case alpha characters come after the upper-case ones. [A-z] might be a valid range (indicating all upper- and lower-cased alphas as well as the punctuation that appears between Z and a), but it might not be, depending on your particular implementation. The i flag can be added to the regex to make it case-insensitive; check your particular implementation for instructions on how to specify that flag.

link|flag
vote up 2 vote down

If it's valid, it won't do what you expect.

The character code of Z is lower than the character code of a, so if the codes are swapped to mean the range [Z-a], it will be the same as [Z\[\\\]^_`a], i.e. it will include the characters Z and a, and the characters between.

If you use [A-z] to get all upper and lower case characters, that is still not the same as [A-Za-z], it's the same as [A-Z\[\\\]^_`a-z].

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.