If string "x" contains any letter or number, print that string. How to do that using regular expressions? Below is wrong?
if re.search('^[A-Z]?[a-z]?[0-9]?', i):
print i
|
|
|
|
|
|
|
You want
|
||||||||
|
|
|
re — Regular expression operations This question is actually rather tricky. Unfortunately \w includes _ and [a-z] solutions assume a 26-letter alphabet. With the below solution please read the pydoc where it talks about LOCALE and UNICODE.
Note that since you are only testing for existence, no quantifiers need to be used -- and in fact, using quantifiers that may match 0 times will returns false positives. |
||||||||||||
|
|
|
And if you need to check for letter (and digits) outside of the ascii range, use this if your regex flavour supports it: |
|||
|
|
|
|
don't need regex.
|
||
|
|
|
|
I suggest that you check out RegexBuddy. It can explain regexes well.
|
||
|
|