I have a bunch of HTML code which contain these images:
<img alt=\"http://www.adsf1.net/static/1231.jpg\" width=\"100%\">
<img alt=\"http://www.1322.com/files/150818g58.jpg\" width=\"100%\">
<img alt=\"http://www.aerwef.org/sda/sdfawe.jpg\" width=\"100%\">
I manage to match these images with this regex
<img[^>]+\s*\/?>
But, I would like to get the url from the alt tag using JS, and store it into an array.
I would like to get a JS array like this (based on the above example)
["http://www.adsf1.net/static/1231.jpg", "http://www.1322.com/files/150818g58.jpg", "http://www.aerwef.org/sda/sdfawe.jpg"]