C#中HTML字符转换函数
在ASP.Net中经常会从⽹⾯中取数据或更新⽹页的显⽰。因为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>
pdf转html///<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;
}