如何在 Objective C 中打印字符集?
我正在使用 GNUstep shell 进行 Objective-C 编程。我能够将字符串转换为字符集。但无法在控制台打印转换后的字符集。请告诉我打印的方法。提前致谢。
i'm using GNUstep shell for programming objective-c. I'm able to convert string to a character set. But unable to print the converted character set in the console. Please tell me a way to print it. Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这将处理 unicode 中的前 65536 个字符,这适用于大多数情况。我相信 unicode 可以更高(2^32?),但这需要更长的时间来记录。
有一些看起来非常有趣的结果,例如,这里是来自
punctuationCharacterSet
的 20 个字符的示例。This will do the first 65536 characters in unicode, which will do for most situations. I believe unicode can go much higher (2^32?), but this would take much longer to log.
There are some quite fun looking results, for example here is a sample of 20 characters from
punctuationCharacterSet
.