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使用正则表达式寻找具有特定后缀的文件的主要内容,如果未能解决你的问题,请参考以下文章

如果文件 url 具有特定的扩展名,正则表达式会发现啥

寻求使用python在一个大文件中进行正则表达式

如何用JS正则表达式截取URL的图片名称和后缀

正则表达式匹配文件名

使用正则表达式解析多个文本字段并编译成 Pandas DataFrame

Python正则表达式仅根据正则表达式替换段落中的特定行而不是整个文件