如何取消包含& #xxx的字符串; ?
示例:
“Quelque petite scratch sur lécran
”
“Quelque petite scratch sur lécran
”
è
| è
é
| é
答案 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);
}
}