Hi In need to remove all special characters, punctuation and spaces from a string so that I only have letters and numbers.
thanks for the help j
|
|
|
This can be done without
You can use
If you insist on using |
|||||||||||||
|
|
Here is a regex to match a string of characters that are not a letters or numbers:
Here is the python command to do a regex substitution (note: I didn't test this, but something like this should work):
|
|||||||||||||||
|
|
The most generic approach is using the 'categories' of the unicodedata table which classifies every single character. E.g. the following code filters only printable characters based on their category:
Look at the given URL above for all related categories. You also can of course filter by the punctuation categories. |
|||||||
|
|
|
Assuming you want to use a regex and you want/need Unicode-cognisant 2.x code that is 2to3-ready:
|
|||
|
|