正则表达式匹配数字
更新:HHH   时间:2023-1-7


pattern = re.compile (r'\d+') # 查找数字
l = pattern.findall (i)

返回编程语言教程...