如何将 html 编码符号转换为其实际字符?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您可以使用 HttpUtility.HtmlDecode() 方法来做到这一点
。您需要在项目中引用 System.Web.dll 程序集。
有关详细信息,请参阅
Yes you can do it using HttpUtility.HtmlDecode() method
p.s. You'll need to refer the System.Web.dll assembly in your project.
See this for details
是的,使用 HttpUtility.HtmlDecode
Yes, using HttpUtility.HtmlDecode