I've got a pretty good working snippit of code, but I was wondering if anyone has any better suggestions on how to do this:
val = ''.join([c for c in val if c in '1234567890.'])
What would you do?
|
I've got a pretty good working snippit of code, but I was wondering if anyone has any better suggestions on how to do this:
What would you do? |
|||
|
|||||||||||
|
|
Here's some sample code:
And the timing results:
Looks like the regex is the winner so far. Personally, I find the regex just as readable as the list comprehension. If you're doing it just a few times then you'll probably take a bigger hit on compiling the regex. Do what jives with your code and coding style. |
|||||||||||
|
|
Another 'pythonic' approach
but regex is faster. |
|||
|
If the set of characters were larger, using sets as below might be faster. As it is, this is a bit slower than a.py.
At least on my system, you can save a tiny bit of time (and memory if your string were long enough to matter) by using a generator expression instead of a list comprehension in a.py:
Oh, and here's the fastest way I've found by far on this test string (much faster than regex) if you are doing this many, many times and are willing to put up with the overhead of building a couple of character tables.
On my system, that runs in ~1.0 seconds where the regex b.py runs in ~4.3 seconds. |
|||
|
|
-for their own code if negative numbers can occur. – Christian Feb 11 at 20:17