0

我用这行代码得到页面的html源代码

WebClient client = new WebClient();
string sPage = client.DownloadString(url); 

页面代码包是iso-8859-1

但在 html 源代码中存在如下所示的 unicode 字符串

<span title="&#1590;&#1575;&#1601;&#1607;"

如何在 c# 中将此代码转换为 Unicode 字符串?

4

1 回答 1

1
 string s = HttpUtility.HtmlDecode(@"<span title=""&#1590;&#1575;&#1601;&#1607;");
于 2012-09-15T14:37:23.010 回答