Python怎么用正则表达式提取字符串中的数字和子字符串

2024-11-02 09:57:50
推荐回答(1个)
回答1:

Python用正则表达式提取字符串中的数字和子字符串
import re
re.findall("\d+",字符串)