在Python 中剝離非字母數字字元
在Python 中,從字串中刪除非字母數字字元所需的方法與PHP 略有不同.
Pythonic 方法
對於真正的「Pythonic」解決方案,請考慮以下方法:
替代方法
出於效能考慮,其他方法可能更快:效能基準測試
這裡是各種計時結果方法,使用string.printable 字串: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 |
以上是如何在Python中有效地去除非字母數字字元?的詳細內容。更多資訊請關注PHP中文網其他相關文章!