python使用正则表达式寻找具有特定后缀的文件
Posted Data+Science+Insight
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python使用正则表达式寻找具有特定后缀的文件相关的知识,希望对你有一定的参考价值。
python使用正则表达式寻找具有特定后缀的文件
# python使用正则表达式寻找具有特定后缀的文件
# import library
import re
# list of different types of file
filenames = ["test.html", "test.xml",
"test.txt", "test.jpg"]
for file in filenames:
# search given pattern in the line
match = re.search("\\.xml$", file)
# if match is found
if match:
print("The file ending with .xml is:",
file)
The file ending with .xml is: test.xml
参考:python re
参考:Python program to find files having a particular extension using RegEx
参考:Python: How can I find all files with a particular extension?
以上是关于python使用正则表达式寻找具有特定后缀的文件的主要内容,如果未能解决你的问题,请参考以下文章