c#怎样把html格式转换文本
现在数据库里存的文本是<p>dwqwrqwe</p>这种格式的,我需要提取之后直接在doc里存进去,结果存进去的完整是html的这种格式,没有转化过来,应该怎样?...
现在数据库里存的文本是<p>dwqwrqwe</p>这种格式的,我需要提取之后直接在doc里存进去,结果存进去的完整是html的这种格式,没有转化过来,应该怎样?
展开
3个回答
展开全部
给你一个方法过滤就行了:
public static string FilterHtml(string input)
{
if (input == null || input == "")
return input;
input = input.Replace("&", "&");
input = input.Replace("<", "<");
input = input.Replace(">", ">");
input = input.Replace(" ", " ");
//input = input.Replace("'", "'");
input = input.Replace("\\", """);
input = input.Replace("\r\n", "<br>\r\n");
return input;
}
public static string FilterHtml(string input)
{
if (input == null || input == "")
return input;
input = input.Replace("&", "&");
input = input.Replace("<", "<");
input = input.Replace(">", ">");
input = input.Replace(" ", " ");
//input = input.Replace("'", "'");
input = input.Replace("\\", """);
input = input.Replace("\r\n", "<br>\r\n");
return input;
}
追问
谢谢!但是比如现在我的这段文字有加粗,在数据库里存的是aaa。我怎么让它在输出之后aaa同时也加粗了呢?
追答
别的html元素都进行过滤,而aaa这个不过滤就行了,实现方法
input = input.Replace("", "#strong#");
input = input.Replace("", "#/strong#");
input = FilterHtml(input);
input = input.Replace("#strong#", "");
input = input.Replace("#/strong#", "");
这个你应该看得懂吧,就是先把替换成其它的内容,然后过滤html元素,最后再替换回来就行了
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询