怎么去除数据库中提取出来的html标签,换行形式变为<br>???
答案:4 悬赏:0 手机版
解决时间 2021-01-27 13:55
- 提问者网友:风月客
- 2021-01-26 21:00
怎么去除数据库中提取出来的html标签,换行形式变为<br>???
最佳答案
- 五星知识达人网友:胯下狙击手
- 2021-01-26 21:48
参考 ——韩寒评部分国人指责台球冠军丁俊晖的教育方式有问题。
全部回答
- 1楼网友:青灯有味
- 2021-01-27 01:57
<%# Convert.ToString(Eval("BoardContent")).Replace("\r","
") %>
我的aspx 页面中用的这个 你试试
") %>
我的aspx 页面中用的这个 你试试
- 2楼网友:毛毛
- 2021-01-27 00:37
public static string DelScripts(string html)
{
html = System.Text.RegularExpressions.Regex.Replace(html, @"", "", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
return html;
}
public static string DelHTML(string Htmlstring)//将HTML去除
{
Htmlstring = Htmlstring.Replace(">=", "").Replace("<=", "");//stiven [2008.4.29]
//删除脚本
Htmlstring = System.Text.RegularExpressions.Regex.Replace(Htmlstring, @"", "", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
//删除HTML
Htmlstring = System.Text.RegularExpressions.Regex.Replace(Htmlstring, @"<(.[^>]*)>", "", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
Htmlstring = System.Text.RegularExpressions.Regex.Replace(Htmlstring, @"([\r\n])[\s]+", "", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
Htmlstring = System.Text.RegularExpressions.Regex.Replace(Htmlstring, @"-->", "", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
Htmlstring = System.Text.RegularExpressions.Regex.Replace(Htmlstring, @"
{
html = System.Text.RegularExpressions.Regex.Replace(html, @"", "", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
return html;
}
public static string DelHTML(string Htmlstring)//将HTML去除
{
Htmlstring = Htmlstring.Replace(">=", "").Replace("<=", "");//stiven [2008.4.29]
//删除脚本
Htmlstring = System.Text.RegularExpressions.Regex.Replace(Htmlstring, @"", "", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
//删除HTML
Htmlstring = System.Text.RegularExpressions.Regex.Replace(Htmlstring, @"<(.[^>]*)>", "", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
Htmlstring = System.Text.RegularExpressions.Regex.Replace(Htmlstring, @"([\r\n])[\s]+", "", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
Htmlstring = System.Text.RegularExpressions.Regex.Replace(Htmlstring, @"-->", "", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
Htmlstring = System.Text.RegularExpressions.Regex.Replace(Htmlstring, @"
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯