最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - RegExp to check if file is image - Stack Overflow

programmeradmin1浏览0评论

Is there a way to know if the file extension is an image?

i got this.

image/png

Already try with

var imageReg = /\.(gif|jpg|jpeg|tiff|png)$/i;
string = "image/png"
imageReg.test(string)

But this return false;

Is there a way to know if the file extension is an image?

i got this.

image/png

Already try with

var imageReg = /\.(gif|jpg|jpeg|tiff|png)$/i;
string = "image/png"
imageReg.test(string)

But this return false;

Share asked Jun 23, 2015 at 4:46 carloss medranoocarloss medranoo 1,4893 gold badges15 silver badges21 bronze badges 2
  • 2 Well, the path image/png has no extension, it's as simple as that. – Ja͢ck Commented Jun 23, 2015 at 4:57
  • as simple as i didnt know and thats why i ask that – carloss medranoo Commented Jun 23, 2015 at 5:03
Add a ment  | 

1 Answer 1

Reset to default 13

Put dot and / inside a character class so that it would match .png or /png strings.

var imageReg = /[\/.](gif|jpg|jpeg|tiff|png)$/i;

Your regex would return true if there is a dot before png but here there exists a forward slash, so it fails.

发布评论

评论列表(0)

  1. 暂无评论