C#string unescape'& #xxx;'

时间:2015-01-31 04:11:45

标签: c# string

如何取消包含& #xxx的字符串; ?

示例:

“Quelque petite scratch sur lécran

“Quelque petite scratch sur lécran

è | è

é | é

1 个答案:

答案 0 :(得分:4)

WebUtility.HtmlDecode应该做的伎俩,例如

using System;
using System.Net;

public class Program
{
    public static void Main()
    {
        string b = WebUtility.HtmlDecode("Quelque petite scratch sur lécran");

        Console.WriteLine("After HtmlDecode: " + b);

    }
}

https://dotnetfiddle.net/148gYR