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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。