首页 > 编程 > .NET > 正文

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

2024-07-10 13:23:58
字体:
来源:转载
供稿:网友
因此需要以下函数做转换:

复制代码 代码如下:


///<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;
}

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表