时间:2021-07-01 10:21:17 帮助过:21人阅读
不大清楚这个,google搜索一下
不管开发什么,看TP2.0中文手册吧,或者到bbs.thinkphp.cn提问,论坛还是比较活跃的!
////// 去除文字内容中的html代码 /// 创建人:魏巍 /// 创建时间:2013-06-08 /// /// ///public static string Removehtml(string str) { string strTmp = string.Empty; Match m; System.Text.RegularExpressions.Regex reg = new System.Text.RegularExpressions.Regex(@"\<[^>]*>"); if (reg.IsMatch(str)) { m = reg.Match(str); for (int index = 0; index < m.Groups.Count; index++) { strTmp = reg.Replace(str, ""); } } else { strTmp = str; } return strTmp; }