C# 正则表达式
摘要:
(1)清除掉字符串中的所有<img/>标签 FrmUniscopeProfile frm = new FrmUniscopeProfile(); Regex regex = new Regex("<img .*/>"); //去除xml中的<img> MatchCollection matches = regex.Matches(htmlWin[0]); for (int i = 0; i <= matches.Count - 1; i++) { html... 阅读全文
posted @ 2012-06-12 17:11
imihiro
阅读(255)
评论(0)
推荐(0)
浙公网安备 33010602011771号