Re: Regex Question

From: Thomas Krichel <krichel_at_nyob>
Date: Tue, 7 Jul 2015 16:32:08 +0000
To: CODE4LIB_at_LISTSERV.ND.EDU
  Eric Phetteplace writes

> You can match a string of all caps letters like "[A-Z]"

  This works if you are limited to English. But in a multilingual
  setting, you need to watch out for other uppercases, such as 
  крихель vs КРИХЕЛЬ. It then depends in the unicode implementation
  of your regex application. In Perl, for example, you would use
  [[:upper:]].


-- 

  Cheers,

  Thomas Krichel                  http://openlib.org/home/krichel
                                              skype:thomaskrichel
Received on Tue Jul 07 2015 - 12:35:20 EDT