在 .plist 文件中写入下标
我试图将数字 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
plist 文件是遵循特定模式的 XML。
不是该架构中的有效标记。如果你想将此类内容放入 PList 中,则必须将其放入 CDATA 中:
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: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).