當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。