Stripping Non-Alphanumeric Characters in Python
In Python, removing non-alphanumeric characters from a string requires a slightly different approach compared to PHP.
Pythonic Methods
For a truly "Pythonic" solution, consider the following methods:
Alternative Approaches
For performance considerations, other methods may be faster:
Performance Benchmarking
Here are timing results for various methods, using the string.printable string:
Method | Time (μs/loop) |
---|---|
Join alphanumeric | 57.6 |
Filter alphanumeric | 37.9 |
Regex substitution with [\W_] | 27.5 |
Regex substitution with [\W_] | 15 |
Regex substitution with pattern.sub() | 11.2 |
The timings show that using the precompiled regular expression with pattern.sub() is the fastest method.
Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.
Copyright© 2022 湘ICP备2022001581号-3