gpt4 book ai didi

c# - 如何将unicode代码更改为char

转载 作者:行者123 更新时间:2023-11-30 14:11:13 24 4
gpt4 key购买 nike

我以这种方式获取 html:

using (var wb = new WebClient())
{
data = soeArray;
var response = wb.UploadValues(url, "POST", data);
string result = System.Text.Encoding.UTF8.GetString(response);
}

但是响应中有 ś 这样的 unicode 代码。有什么方法可以将其更改为相应的字符吗?

最佳答案

我想你要找的是System.Web.HttpUtility.HtmlDecode或者,如果这不是 Web 应用程序,System.Net.WebUtility.HtmlDecode .

例如:

string result = System.Net.WebUtility.HtmlDecode(System.Text.Encoding.UTF8.GetString(response));

关于c# - 如何将unicode代码更改为char,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20864365/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com