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?
|
5
|
It seems like there should be a simpler way than:
Is there?
|
||||||||
|
|
|
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:
|
||||
|
|
|
I usually use something like this:
|
||
|
|
|
|
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. |
||||||
|
|
|
Not necessarily simpler, but a different way, if you are more familiar with the re family.
|
||||||
|