Re: Regex for unicode letter characters

2009-01-11 Thread Steve Holden
MRAB wrote: > Steve Holden wrote: >> MRAB wrote: >>> schickb wrote: I need a regex that will match strings containing only unicode letter characters (not including numeric or the _ character). I was surprised to find the 're' module does not include a special character class for

Re: Regex for unicode letter characters

2009-01-10 Thread MRAB
Steve Holden wrote: MRAB wrote: schickb wrote: I need a regex that will match strings containing only unicode letter characters (not including numeric or the _ character). I was surprised to find the 're' module does not include a special character class for this already (python 2.6). Or did I

Re: Regex for unicode letter characters

2009-01-10 Thread Steve Holden
MRAB wrote: > schickb wrote: >> I need a regex that will match strings containing only unicode letter >> characters (not including numeric or the _ character). I was surprised >> to find the 're' module does not include a special character class for >> this already (python 2.6). Or did I miss somet

Re: Regex for unicode letter characters

2009-01-10 Thread MRAB
schickb wrote: I need a regex that will match strings containing only unicode letter characters (not including numeric or the _ character). I was surprised to find the 're' module does not include a special character class for this already (python 2.6). Or did I miss something? It seems like thi

Regex for unicode letter characters

2009-01-10 Thread schickb
I need a regex that will match strings containing only unicode letter characters (not including numeric or the _ character). I was surprised to find the 're' module does not include a special character class for this already (python 2.6). Or did I miss something? It seems like this would be a very