扩展 HTML 字符串以具有命名字符实体

发布于 2024-12-05 09:06:00 字数 208 浏览 2 评论 0原文

.NET 类库中是否有一种方法可以对字符串进行编码,以便将命名实体存在的任何字符替换为使用该命名实体? HttpUtility.HtmlEncode 似乎没有帮助:

// Result is "$", would like "€" instead
var encoded = HttpUtility.HtmlEncode("€");

Is there a way in the .NET class library to encode a string so that any character for which a named entity exists is replaced to use this named entity? HttpUtility.HtmlEncode doesn't appear to help:

// Result is "$", would like "€" instead
var encoded = HttpUtility.HtmlEncode("€");

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

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

发布评论

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

评论(1

成熟的代价 2024-12-12 09:06:00

我认为您必须亲自动手,从规范中获取命名实体的规范列表,然后创建一个循环,对于每个命名实体,只需用相应的实体引用替换该字符的每次出现。

I think you would have to get your hands dirty and just grab the canonical list of named entities from the specification and then create a loop that, for every named entity, simply replaces every occurrence of that character with the corresponding entity reference.

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