up vote 4 down vote favorite
share [g+] share [fb]

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?

link|improve this question

feedback

1 Answer

up vote 10 down vote accepted
[^\W\d]

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

link|improve this answer
pretty cool. I hadn't thought about that. – poulejapon Jun 28 '09 at 16:46
I honestly bow before your greatness :) – tzot Jun 28 '09 at 22:17
Excellent. This throws out ALL Unicode digit characters, not just the ASCII [0-9]. – John Machin Jun 29 '09 at 0:26
feedback

Your Answer

 
or
required, but never shown

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