發(fā)布時(shí)間:2020-08-06 21:48 作者:獨(dú)孤劍 閱讀:4634
using System; namespace ConsoleApp31 { class Program { static void Main(string[] args) { Console.WriteLine(HtmlToEsc("有 空 格")); Console.WriteLine(EscToHtml("有 空 格")); Console.Read(); } /// <summary> /// Html to Esc /// </summary> /// <param name="input">input</param> /// <returns></returns> public static string HtmlToEsc(string input) { if (string.IsNullOrEmpty(input)) { return ""; } input = input.Replace("&", "&") .Replace("'", "'") .Replace("\"", """) .Replace("<", "<") .Replace(">", ">") .Replace(" ", " ") .Replace("©", "©") .Replace("®", "®") .Replace("?", "™"); return input; } /// <summary> /// Esc to Html /// </summary> /// <param name="input">input</param> /// <returns></returns> public static string EscToHtml(string input) { if (string.IsNullOrEmpty(input)) { return ""; } input = input.Replace("™", "?") .Replace("®", "®") .Replace("©", "©") .Replace(" ", " ") .Replace(">", ">") .Replace("<", "<") .Replace(""", "\"") .Replace("'", "'") .Replace("&", "&"); return input; } } }
微信打賞, 微信掃一掃
支付寶打賞, 支付寶掃一掃
如果文章對(duì)您有幫助,歡迎給作者打賞