Re: Upper/lowercase regex matching in unicode

2005-10-19 Thread George Sakkis
"Jason Stitt" <[EMAIL PROTECTED]> wrote: > What's the best way to match uppercase or lowercase characters with a > regular expression in a unicode-aware way? Obviously [A-Z] and [a-z] > aren't going to cut it. I thought there were character classes of the > form ::upper:: or similar syntax, but ca

Upper/lowercase regex matching in unicode

2005-10-19 Thread Jason Stitt
What's the best way to match uppercase or lowercase characters with a regular expression in a unicode-aware way? Obviously [A-Z] and [a-z] aren't going to cut it. I thought there were character classes of the form ::upper:: or similar syntax, but can't find them in the docs. Maybe I'm getti