python 正则表达式 匹配指定字符
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 正则表达式 匹配指定字符相关的知识,希望对你有一定的参考价值。
比如 line = "result of fold 0, instance 3.";
有时候你只要 里面的0, 或者 3 , 怎么办?
只要在正则表达式中加个括号:
pattern = re.compile(r‘.?instance.?(\w).‘)
用括号 \w , 那么group(1)就会只有3这个数字;
以上是关于python 正则表达式 匹配指定字符的主要内容,如果未能解决你的问题,请参考以下文章