C#中HTML字符转换函数分享

雪飘落在对面的屋顶上,屋顶像蒙了一条闪着银光的纱巾,美丽极了。雪飘落在树上,树上像缀满了银色的小花。雪飘落在操场上,操场变得像铺满棉花一样白茫茫的一片。
因此需要以下函数做转换:
 
///<summary>
///替换html中的特殊字符
///</summary>
///<paramname="theString">需要进行替换的文本。</param>
///<returns>替换完的文本。</returns>
public static string HtmlEncode(string theString)
{
theString=theString.Replace(">",">");
theString=theString.Replace("<","<");
theString=theString.Replace(" ","");
theString=theString.Replace("\"",""");
theString = theString.Replace("\'", "'");
theString=theString.Replace("n","<br/>");
return theString;
} ///<summary>
///恢复html中的特殊字符
///</summary>
///<paramname="theString">需要恢复的文本。</param>
///<returns>恢复好的文本。</returns>
public static string HtmlDiscode(string theString)
{
theString=theString.Replace(">",">");
theString=theString.Replace("<","<");
theString=theString.Replace(""," ");
theString=theString.Replace(""",""");
theString = theString.Replace("'", "'");
theString=theString.Replace("<br/>","\n");
return theString;
}

本文C#中HTML字符转换函数分享到此结束。当你尽了自我的最大努力时,失败也是伟大的。小编再次感谢大家对我们的支持!

您可能有感兴趣的文章
解析xHTML源码的DLL组件AngleSharp介绍

asp控件和html控件的概念区别

在aspx页面引用html页的写法

html+ashx 表单提交示例

去除HTML标签删除HTML示例代码