Skip to content

Instantly share code, notes, and snippets.

@draeton
Created December 9, 2011 21:58
Show Gist options
  • Save draeton/1453491 to your computer and use it in GitHub Desktop.
Save draeton/1453491 to your computer and use it in GitHub Desktop.
Filter file names by extension
var list = "me.jpg,me.png,me.txt,me.zip,me.apple".split(",");
var re = /.+\.(?!jpg|jpeg|gif|png)/i;
list.forEach(function (v, i) {
console.log(v, re.test(v));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment