标签:pytho nbsp line com att 字符 .com 括号 正则表达
比如 line = "result of fold 0, instance 3.";
有时候你只要 里面的0, 或者 3 , 怎么办?
只要在正则表达式中加个括号:
pattern = re.compile(r‘.?instance.?(\w).‘)
用括号 \w , 那么group(1)就会只有3这个数字;
标签:pytho nbsp line com att 字符 .com 括号 正则表达
原文地址:http://www.cnblogs.com/quant-lee/p/6662227.html