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

Using Python module re, how to get the equivalent of the "\w" (which matches alphanumeric chars) WITHOUT matching the numeric characters (those which can be matched by "[0-9]")?

Notice that the basic need is to match any character (including all unicode variation) without numerical chars (which are matched by "[0-9]").

As a final note, I really need a regexp as it is part of a greater regexp.

Underscores should not be matched.

EDIT:

  • I hadn't thought about underscores state, so thanks for warnings about this being matched by "\w" and for the elected solution that addresses this issue.
link|improve this question

75% accept rate
feedback

2 Answers

up vote 15 down vote accepted

You want [^\W\d]: the group of characters that is not (either a digit or not an alphanumeric). Add an underscore in that negated set if you don't want them either.

A bit twisted, if you ask me, but it works. Should be faster than the lookahead alternative.

link|improve this answer
Nice, +1 from me. Didn't think of that one. – Tomalak Nov 4 '09 at 13:49
great idea, that can be re-used with other patterns and other regex implementation. – vaab Nov 5 '09 at 7:46
feedback
(?!\d)\w

A position that is not followed by a digit, and then \w. Effectively cancels out digits but allows the \w range by using a negative look-ahead.

The same could be expressed as a positive look-ahead and \D:

(?=\D)\w

To match multiple of these, enclose in parens:

(?:(?!\d)\w)+
link|improve this answer
1  
Don't forget that \w also contains the underscore. – Tim Pietzcker Nov 4 '09 at 13:38
The OP did say nothing about the underscore. How is that relevant? – Tomalak Nov 4 '09 at 13:38
Just in case the OP doesn't expect it. I like your solution. – Tim Pietzcker Nov 4 '09 at 13:42
feedback

Your Answer

 
or
required, but never shown

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