当购物车东西很多时,既不能排序,也无法管理,做了一个小工具,解析网页,把所有的项目提取出来。
把网页源码粘贴进去即可:
解析结果:
其实,解析代码只有一句:
MatchCollection mas = StringUtil.Matches(s, "<img alt=\"(*aa*)\" clstag=\"clickcart");
for (int i = 0; i < mas.Count; i++)
{
o += mas[i].Groups["aa"].Value + "\r\n";
}
下载地址(frameworkv2.0)
时间: 2024-11-06 17:35:01