我使用这行代码
获取html源代码页面WebClient client = new WebClient();
string sPage = client.DownloadString(url);
页面代码包是iso-8859-1
但在html源
中存在如下所示的unicode字符串<span title="ضافه"
如何在c#中将此代码转换为Unicode字符串?
答案 0 :(得分:1)
string s = HttpUtility.HtmlDecode(@"<span title=""ضافه");