正则过滤字符串中的数字

前端之家收集整理的这篇文章主要介绍了正则过滤字符串中的数字前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
import re

arg = "jing4 gong1 sang1 zi3"

arg_count =  arg.count(" ")
patten ="([a-z]*)\d\s?"*(arg_count+1)
print patten
arg_compile = re.compile(patten)

match_obj = arg_compile.search(arg)

print match_obj.groups()
原文链接:/regex/362135.html

猜你在找的正则表达式相关文章