NSString:寻找上标的 Unicode:1,2,3
我正在寻找 Unicode 或某种方法或字节语言,可以为 1, 2, 3 提供上标。无论出于何种原因,Unicode 都有 0, 4, 5, 6, 7, 8, 9 的上标,但没有 1, 2 , 3.
你能在 NSString
中像 HTML 那样做上标吗?
I am looking for the Unicode or some method or byte language that can put out superscripts for 1, 2, 3. For whatever reason Unicode has superscripts for 0, 4, 5, 6, 7, 8, 9, but not 1, 2, 3.
Can you do superscripts like HTML in NSString
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
从字符调色板:
要将它们放入
NSStrings
中,您需要执行以下操作:From the character palette:
This, to make them in to
NSStrings
, you'd do:我知道这个问题已经得到解答,但如果有人想重用我的代码来从标准数字字符串转换为上标,就在这里。
给定一个数字输入字符串,它只返回等效的上标字符串。
编辑(感谢jrturton):
I know this question has already been answered but if anyone wants to reuse my code for converting from a standard string of numbers to superscript, here it is.
Given an input string of numbers it just returns the equivalent superscript string.
Edit (thanks to jrturton):
字符存在上
The characters exist