111,125
社区成员
发帖
与我相关
我的任务
分享
using System.Text.RegularExpressions;
Regex regx = new Regex("src=\"([\\s\\S].*?)\"");
MatchCollection mc = regx.Matches(this.webBrowser1.DocumentText);
foreach (Match m in mc)
{
string strFile = m.ToString(); //图片路径
}