vote up 3 vote down star

I'm looking for a pattern equivalent to \w, and which doesn't match numeric pattern. I cannot use [a-zA-Z] because I would like it to match japanese kanjis as well.

Is there a way to write something like [\w^[0-9]] ? Is there an equivalent of [:alpha:] in python regex?

flag

2 Answers

vote up 9 vote down check
[^\W\d]

Throw out non-word characters and throw out digits. Keep the rest.

link|flag
pretty cool. I hadn't thought about that. – Paul Jun 28 at 16:46
I honestly bow before your greatness :) – ΤΖΩΤΖΙΟΥ Jun 28 at 22:17
Excellent. This throws out ALL Unicode digit characters, not just the ASCII [0-9]. – John Machin Jun 29 at 0:26
vote up 0 vote down

Please, read this: http://docs.python.org/library/re.html or just open this page and search for unicode with your browser. Everything you need is explained.

link|flag
A RTFM advice is generally helpful, so I won't downvote it; however, this one stands out as offtopic-ish for this specific question, compared to the excellent answer by John Kugelman. – ΤΖΩΤΖΙΟΥ Jun 28 at 22:16

Your Answer

Get an OpenID
or

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