I'm trying to match all the images elements as strings,
This is my regex:
html.match(/<img[^>]+src="http([^">]+)/g);
This works, but I want to extract the src
of all the images. So when I execute the regular expression on this String:
<img src="http://static2.ccn.com/ccs/2013/02/img_example.jpg />
it returns:
"http://static2.ccn.com/ccs/2013/02/img_example.jpg"
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…