从Python中的字符串中删除所有非数字字符

2022-01-17 00:00:00 python numbers

问题描述

我们如何从 Python 中的字符串中删除所有非数字字符?

How do we remove all non-numeric characters from a string in Python?


解决方案

>>> import re
>>> re.sub("[^0-9]", "", "sdkjh987978asd098as0980a98sd")
'987978098098098'

相关文章