To find a regular, you can get all the IMG elements in a string.

var imgs = "<img src="http://baidu.com" />

IMG

<img src="http://baidu.com" /><span></span>"
Mar.05,2021

imgs.replace(/<img [^>]*src=['"]([^'"]+)[^>]*>/gi, function (match, capture) {
    console.log(capture);
});
Menu