Haskell:将 unicode 整数转换为实际的 unicode 字符
假设我的 Haskell 函数有一个输入,该输入应该是 unicode 代码点的编号。如何将其转换为相应的字符?
示例:
123 到“{”。
Suppose that my Haskell function is given an input, which is supposed to be the number of a unicode code point. How can one convert this to the corresponding character?
Example:
123 to '{'.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用toEnum。 (
Char
实现了Enum
类型类。)Use
toEnum
. (Char
s implement theEnum
typeclass.)