在 .plist 文件中写入下标

发布于 2024-12-01 00:41:33 字数 108 浏览 0 评论 0原文

我试图将数字 2 表示为属性列表文件中的下标。我尝试使用2,但它似乎不起作用。谁能帮我解决这个问题吗?当我将其存储到字符串中后,它会正确存储在字符串中吗?

I am trying to represent the number 2 as a subscript in a property list file. I tried using<sub>2</sub>, but it doesn't seem to work. Can anyone help me with this? and will it be stored correctly in a string after I store it there?

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

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

发布评论

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

评论(2

随遇而安 2024-12-08 00:41:33

plist 文件是遵循特定模式的 XML。 不是该架构中的有效标记。如果你想将此类内容放入 PList 中,则必须将其放入 CDATA 中:

<![CDATA[<sub>2</sub>]]>

A plist file is XML that follows a certain schema. <sub> is not a valid tag in that schema. If you want to put that kind of stuff in the PList, you have to put in into CDATA:

<![CDATA[<sub>2</sub>]]>
夕色琉璃 2024-12-08 00:41:33

plist 文件通常是 UTF-8 编码的 XML 文件。您应该能够按原样使用 Unicode 下标字符。要复制非 ASCII 字符,您可以使用键盘和键盘。字符查看器(在 Lion 上:系统首选项 > 语言和文本 > 输入源 > 选择键盘和字符查看器作为输入源)。

A plist file is typically a UTF-8 encoded XML file. You should be able to use the Unicode subscript characters as it is. To copy a non-ASCII char, you can use the Keyboard & Character Viewer (on Lion: System Preferences > Language & Text > Input Sources > Select the Keyboard & Character Viewer as an input source).

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