当前位置: 移动技术网 > IT编程>开发语言>.net > asp.net替换和恢复html特殊字符

asp.net替换和恢复html特殊字符

2018年04月22日  | 移动技术网IT编程  | 我要评论

安装,章子怡温馨牵继女,神经官能症吃什么药

/// <summary>
/// 替换html中的特殊字符
/// </summary>
/// <param name="thestring">需要进行替换的文本。</param>
/// <returns>替换完的文本。</returns>
public string htmlencode(string thestring)
{
     thestring=thestring.replace(">", ">");
     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>
/// <param name="thestring">需要恢复的文本。</param>
/// <returns>恢复好的文本。</returns>
public string htmldiscode(string thestring)
{
     thestring=thestring.replace(">", ">");
     thestring=thestring.replace("<", "<");
     thestring=thestring.replace(" "," ");
     thestring=thestring.replace("  ","  ");
     thestring=thestring.replace(""","\"");
     thestring=thestring.replace("'","\'");
     thestring=thestring.replace("<br/> ","\n");
     return thestring;
}

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网