Python re.compile - 选择所有带有任何图像文件扩展名的文件(正则表达式)

时间:2017-04-13 02:35:06

标签: python regex

在Python脚本的一部分中,我正在尝试选择具有以下示例等格式的所有图像:

customImage0.jpg customImage1.png customImage3.gif

我目前有这段代码:

pattern = re.compile('customImage[0-9]*.png')

我想修改它,以便我可以选择所有图像扩展类型,而不仅仅是png。我试过了[jpg|png|gif|tiff]。这只抓住了文件扩展名的第一个字母:

customImage0.j customImage1.p

如何获取整个文件扩展名?

0 个答案:

没有答案