gpt4 book ai didi

c# - 删除字符串中的 HTML 实体

转载 作者:太空狗 更新时间:2023-10-30 00:03:01 27 4
gpt4 key购买 nike

我有在按下链接按钮时检索到的文本:

enter image description here

当我按下按钮时,我得到以下返回:

Test UAT's for release 2.2.0

看起来正在检索 HMTL 实体。如何将它们转回正常字符串?

最佳答案

你不需要删除 Html 实体,实际上你在这里显示的字符串是 HTML Encoded 所以你只需要做 Html Decoding 就可以得到它以正常形式。

为此你有HttpUtility.HtmlDecode方法。

string normalString = HttpUtility.HtmlDecode(myEncodedString);

如果您使用的是 .NET 4.0 或更高版本,那么您还可以使用 WebUtility.HtmlDecode

关于c# - 删除字符串中的 HTML 实体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19692654/

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