国产97色在线|亚洲-欧美人妻另类制服丝袜-欧美人成国产91视频-殷素素一女战二夫|www.ycjrc.net

C# ASP.NET 中html常見轉(zhuǎn)義字符的處理

發(fā)布時(shí)間:2020-08-06 21:48 作者:獨(dú)孤劍 閱讀:4634

C# ASP.NET 中html常見轉(zhuǎn)義字符的處理
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("&", "&amp;")
                        .Replace("'", "&#39;")
                        .Replace("\"", "&quot;")
                        .Replace("<", "&lt;")
                        .Replace(">", "&gt;")
                        .Replace(" ", "&nbsp;")
                        .Replace("©", "&copy;")
                        .Replace("®", "&reg;")
                        .Replace("?", "&#8482;");
            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("&#8482;", "?")
                        .Replace("&reg;", "®")
                        .Replace("&copy;", "©")
                        .Replace("&nbsp;", " ")
                        .Replace("&gt;", ">")
                        .Replace("&lt;", "<")
                        .Replace("&quot;", "\"")
                        .Replace("&#39;", "'")
                        .Replace("&amp;", "&");
            return input;
        }
    }
}


微信打賞, 微信掃一掃

支付寶打賞, 支付寶掃一掃

如果文章對(duì)您有幫助,歡迎給作者打賞

作者最新文章
開發(fā)過程中解決360兼容模式瀏覽器的方法
云南象群向西南方向遷移,云南離群獨(dú)象距離象群約12公里
吉林做網(wǎng)站最低價(jià)格,吉林企業(yè)網(wǎng)站建設(shè)價(jià)格低至500元起
守象人直擊云南象群最新動(dòng)向
網(wǎng)站影響百度蜘蛛抓取量的因素有哪些?為什么我的網(wǎng)站Baidu蜘蛛來的次數(shù)少?
企業(yè)名片
在線客服