自己测试过的正则表达式

匹配html的<a>标签:

<a[^>]+>.*?</a>

匹配html的<img>标签中的src属性:

(?<=<img[^>]+src=")\S+?(?=")

原文地址:https://www.cnblogs.com/Antech/p/3042442.html