标签: regex regex-greedy
我希望有人可以帮助我让这场比赛变得非常贪婪...我正在使用Javascript和ASP Classic
.match(/(<a\s+.*?><\/a>)/ig);
目的是以这种格式<a href ></a>
<a href ></a>
我需要捕获网址
由于
答案 0 :(得分:1)
尝试以下方法:
.match(/(<a\s+.*?href="(.*?)".*?>/)/ig);