Skip to content

Instantly share code, notes, and snippets.

@ada-lovecraft
Created May 14, 2013 16:50
Show Gist options
  • Save ada-lovecraft/5577496 to your computer and use it in GitHub Desktop.
Save ada-lovecraft/5577496 to your computer and use it in GitHub Desktop.
Weird JS Regex.
var links = ["http://i.imgur.com/i2fB61Z.jpg", ""http://i.imgur.com/TJOigM8.jpg"];
links.forEach(function(link) {
var match = null;
match = image.link.match(/http:\/\/i\.imgur\.com\//);
console.log(match);
});
/*** output
http://i.imgur.com/
null
***/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment