我们如何从 Python 中的字符串中删除所有非数字字符?
How do we remove all non-numeric characters from a string in Python?
>>> import re
>>> re.sub("[^0-9]", "", "sdkjh987978asd098as0980a98sd")
'987978098098098'
这篇关于从Python中的字符串中删除所有非数字字符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!