码迷,mamicode.com
首页 > Web开发 > 详细

利用正则表达式去掉html代码

时间:2014-06-08 19:25:10      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:c   code   a   ext   string   html   

using System.Text.RegularExpressions;

 

// 利用正则表达式去掉"<"和">"之间的内容。

private string StripHT(string strHtml)
{
   Regex regex=new Regex("<.+?>",RegexOptions.IgnoreCase);
   string strOutput=regex.Replace(strHtml,"");
  return strOutput;
 }

// 此方法不太合适,去掉了所有"<"和">"之间的内容。

 

各位有更好的方法,欢迎指点.

利用正则表达式去掉html代码,布布扣,bubuko.com

利用正则表达式去掉html代码

标签:c   code   a   ext   string   html   

原文地址:http://www.cnblogs.com/mvc2014/p/3776048.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!