Python匹配字符串中的数字: import re s='zs10nj23kl' f1=re.findall('(\d+)',s) print(f1) 输出为: ['10', '23'] 转载于:https://www.cnblogs.com/zhangziyan/p/9119379.html