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


Python fnmatch.translate用法及代碼示例


用法:

fnmatch.translate(pattern)

返回轉換為正則表達式的 shell-style pattern 以便與 re.match() 一起使用。

例子:

>>> import fnmatch, re
>>>
>>> regex = fnmatch.translate('*.txt')
>>> regex
'(?s:.*\\.txt)\\Z'
>>> reobj = re.compile(regex)
>>> reobj.match('foobar.txt')
<re.Match object; span=(0, 10), match='foobar.txt'>

相關用法


注:本文由純淨天空篩選整理自python.org大神的英文原創作品 fnmatch.translate。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。