标签:price 技术 mat span code range 正则表达 ext ima
text="apple‘s price $99,orange‘s price &10" ret=re.match(‘.*(\$\d+).*(\&\d+)‘,text) print(ret.group())
取第一组:
text="apple‘s price $99,orange‘s price &10" ret=re.match(‘.*(\$\d+).*(\&\d+)‘,text) print(ret.group(1))
取第二组:
text="apple‘s price $99,orange‘s price &10" ret=re.match(‘.*(\$\d+).*(\&\d+)‘,text) print(ret.group(2))
取第一组和第二组:
text="apple‘s price $99,orange‘s price &10" ret=re.match(‘.*(\$\d+).*(\&\d+)‘,text) print(ret.group(1,2))
取所有得子分组:
text="apple‘s price $99,orange‘s price &10" ret=re.match(‘.*(\$\d+).*(\&\d+)‘,text) print(ret.groups())
标签:price 技术 mat span code range 正则表达 ext ima
原文地址:https://www.cnblogs.com/zhaoxinhui/p/12473108.html