11.8. fnmatch
— Unix 文件名模式匹配¶
源代码: Lib/fnmatch.py
此模块提供了 Unix shell 风格的通配符,它们 并不 等同于正则表达式(关于后者的文档参见 re
模块)。 shell 风格通配符所使用的特殊字符如下:
模式 | 含义 |
---|---|
* |
匹配所有 |
? |
匹配任何单个字符 |
[seq] |
匹配 seq 中的任何字符 |
[!seq] |
匹配任何不在 seq 中的字符 |
对于字面值匹配,请将原字符用方括号括起来。 例如,'[?]'
将匹配字符 '?'
。
Note that the filename separator ('/'
on Unix) is not special to this
module. See module glob
for pathname expansion (glob
uses
fnmatch()
to match pathname segments). Similarly, filenames starting with
a period are not special for this module, and are matched by the *
and ?
patterns.
-
fnmatch.
fnmatch
(filename, pattern)¶ 检测 filename 字符串是否匹配 pattern 字符串,返回
True
或False
。 两个形参都会使用os.path.normcase()
进行大小写正规化。fnmatchcase()
可被用于执行大小写敏感的比较,无论这是否为所在操作系统的标准。这个例子将打印当前目录下带有扩展名
.txt
的所有文件名:import fnmatch import os for file in os.listdir('.'): if fnmatch.fnmatch(file, '*.txt'): print(file)
-
fnmatch.
fnmatchcase
(filename, pattern)¶ 检测 filename 是否匹配 pattern,返回
True
或False
;此比较是大小写敏感的,并且不会应用os.path.normcase()
。
-
fnmatch.
filter
(names, pattern)¶ 返回 names 列表中匹配 pattern 的子集。 它等价于
[n for n in names if fnmatch(n, pattern)]
,但其实现更为高效。
-
fnmatch.
translate
(pattern)¶ 返回 shell 风格 pattern 转换成的正则表达式以便用于
re.match()
。示例:
>>> import fnmatch, re >>> >>> regex = fnmatch.translate('*.txt') >>> regex '.*\\.txt\\Z(?ms)' >>> reobj = re.compile(regex) >>> reobj.match('foobar.txt') <_sre.SRE_Match object; span=(0, 10), match='foobar.txt'>
参见
- 模块
glob
- Unix shell 风格路径扩展。