我们如何从 Python 中的字符串中删除所有非数字字符?
>>> import re >>> re.sub("[^0-9]", "", "sdkjh987978asd098as0980a98sd") '987978098098098'