var str='hello <img src="haha.png" alt="哈哈"/>world';正确匹配输出’hello[哈哈]world’
1 回答
墨色风雨
TA贡献1853条经验 获得超6个赞
var str='hello <img src="haha.png" alt="哈哈"/>world';
let exp = /^(\S+)\s?[<].*[alt="](.*?)["]\s*[\/>]\s*(\S+)$/;
let ret = str.match(exp);
str = ret[1]+'['+ret[2]+']'+ret[3];
console.log(str);
添加回答
举报
0/150
提交
取消