regex-negation

python-re: How do I match an alpha character

python-re: How do I match an alpha character Question: How can I match an alpha character with a regular expression. I want a character that is in w but is not in d. I want it unicode compatible that’s why I cannot use [a-zA-Z]. Asked By: basaundi || Source Answers: What about: p{L} You can …

Total answers: 3