gpt4 book ai didi

c# - 在 web.config 值中使用 HTML 下标

转载 作者:太空宇宙 更新时间:2023-11-03 23:15:46 25 4
gpt4 key购买 nike

我想要一个文本中的子字符串,它应该像 ABC2XYZ

所以我在获取值的 web.config 中如下使用它

在 Web.config 中

<add key="Name" value="ABC&lt;sub&gt;2 &lt;/sub&gt;XYZ" />

在 Layout.cshtml 中

<title id="Title">@(string.Format("{0} - {1}", HttpUtility.HtmlDecode(ConfigurationManager.AppSettings["Name"]), ViewBag.Title))</title>

但最终的文本输出显示为 ABC2XYZ 而不是子字符串。您能否帮我解决这个问题,或者您能否提出任何其他实现方法。

最佳答案

尝试使用与下标 2 等效的 unicode,“U+2082”。

<add key="Name" value="ABC&#x2082;XYZ" />

https://www.w3.org/TR/unicode-xml/

http://unicode.org/charts/PDF/U2070.pdf

关于c# - 在 web.config 值中使用 HTML 下标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37310305/

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