当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python re.Pattern.fullmatch用法及代码示例


用法:

Pattern.fullmatch(string[, pos[, endpos]])

如果整个string 匹配这个正则表达式,返回一个对应的匹配对象。如果字符串与模式不匹配,则返回None;请注意,这与零长度匹配不同。

可选的posendpos 参数与search() 方法的含义相同。

>>> pattern = re.compile("o[gh]")
>>> pattern.fullmatch("dog")      # No match as "o" is not at the start of "dog".
>>> pattern.fullmatch("ogre")     # No match as not the full string matches.
>>> pattern.fullmatch("doggie", 1, 3)   # Matches within given limits.
<re.Match object; span=(1, 3), match='og'>

3.4 版中的新函数。

相关用法


注:本文由纯净天空筛选整理自python.org大神的英文原创作品 re.Pattern.fullmatch。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。