Tagged Questions

3
votes
2answers
126 views

Unicode friendly alphabetic pattern for python regex?

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 …