C#使用正則表達式去除html標記:
using System
string strHtml = @"
帶有HTML標記的字符";
Regex regex = new Regex("<
string str = regex
Console
From:http://tw.wingwit.com/Article/program/net/201311/11577.html
C#使用正則表達式去除html標記:
using System
string strHtml = @"
帶有HTML標記的字符";
Regex regex = new Regex("<
string str = regex
Console