It seems like there should be a simpler way than:
import string
s = "string. With. Punctuation?" # Sample string
out = s.translate(string.maketrans("",""), string.punctuation)
Is there?
|
feedback
|
|
From an efficiency perspective, you're not joing to beat translate() - it's performing raw string operations in C with a lookup table - there's not much that will beat that bar writing your own C code. If speed isn't a worry, another option though is:
This is faster than s.replace with each char, but won't perform as well as non-pure python approaches such as regexes or string.translate, as you can see from the below timings. For this type of problem, doing it at as low a level as possible pays off. Timing code:
This gives the following results:
| |||||||||||||
feedback
|
| |||||||
feedback
|
|
I usually use something like this:
| |||
|
feedback
|
|
Not necessarily simpler, but a different way, if you are more familiar with the re family.
| |||||||
feedback
|
|
string.punctuation is ascii ONLY! A more correct (but also much slower) way is to use the unicodedata module:
| |||
|
feedback
|
|
Do search and replace using the regex functions, as seen here.. If you have to repeatedly perform the operation, you can keep a compiled copy of the regex pattern (your punctuation) around, which will speed things up a bit. | |||||||
feedback
|
|
This might not be the best solution however this is how I did it.
| |||
|
feedback
|
The temperature in the O'Reilly & Arbuthnot-Smythe server's main rack is 40.5 degrees." contains exactly ONE punctuation character, the second "." – John Machin Mar 8 '10 at 21:49