如何将 html 编码符号转换为其实际字符?

发布于 2024-11-07 03:12:37 字数 227 浏览 0 评论 0原文

我正在使用 WebClient.DownloadString 方法从网站获取响应。

有时,返回的字符串将包含 ' 符号,因为它的代码是:n#39 (或类似的,我从记忆中回忆起它)。

我使用了 String.Replace 方法来替换任何出现的情况,但也许有一个内置方法可以让我将这些编码转换为实际字符。

这存在吗?

I'm using the WebClient.DownloadString method to GET a response from a website.

Sometimes, the returned string will contain the ' symbol as it's code: n#39 (or similar, I'm recalling it from memory).

I've used the String.Replace method to replace any occurrences, but maybe there's a built in method that let's me convert these encoding's to the actual character.

Does this exist?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

十秒萌定你 2024-11-14 03:12:37

是的,您可以使用 HttpUtility.HtmlDecode() 方法来做到这一点

HttpUtility.HtmlDecode(myEncodedString)

。您需要在项目中引用 System.Web.dll 程序集。

有关详细信息,请参阅

Yes you can do it using HttpUtility.HtmlDecode() method

HttpUtility.HtmlDecode(myEncodedString)

p.s. You'll need to refer the System.Web.dll assembly in your project.

See this for details

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文