2009年8月18日 星期二

去除 html tag

如果發現從資料庫抓回來的資料,含有許多 html tag,但你不想要這些 tag 時,
可以透過以下 RegularExpression 方式去除這些 html tag



using System.Text.RegularExpressions;


protected void Button1_Click(object sender, EventArgs e)
{
string str = @"<a href="""" target=""_blank"">cftea</a>";
Regex regex = new Regex(@"<(.|\n)+?>");
str = regex.Replace(str, "");
Response.Write(str);
}


沒有留言:

張貼留言