国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > .NET > 正文

C#中HTML字符轉(zhuǎn)換函數(shù)分享

2024-07-10 13:23:58
字體:
供稿:網(wǎng)友
因此需要以下函數(shù)做轉(zhuǎn)換:

復(fù)制代碼 代碼如下:


///<summary>
///替換html中的特殊字符
///</summary>
///<paramname="theString">需要進(jìn)行替換的文本。</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>
///恢復(fù)html中的特殊字符
///</summary>
///<paramname="theString">需要恢復(fù)的文本。</param>
///<returns>恢復(fù)好的文本。</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;
}

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 吉隆县| 呼和浩特市| 无为县| 扶余县| 宕昌县| 禄丰县| 神农架林区| 芮城县| 称多县| 鄂伦春自治旗| 龙州县| 防城港市| 海口市| 铁力市| 丹棱县| 建德市| 韶关市| 都昌县| 阳朔县| 鹿邑县| 新和县| 靖西县| 泰兴市| 灵丘县| 博爱县| 织金县| 迁西县| 调兵山市| 沙雅县| 蒲城县| 安图县| 磐安县| 南康市| 邯郸县| 温泉县| 黎平县| 会昌县| 饶平县| 景谷| 探索| 苏尼特右旗|