I\'m trying to match all the images elements as strings,
This is my regex:
html.match(/]+src=\"http([^\">]+)/g);
Th
var myRegex = /]+src="(http:\/\/[^">]+)"/g; var test = ''; myRegex.exec(test);