Io 字符串(序列)操作/格式化?

发布于 2024-12-20 13:18:04 字数 241 浏览 1 评论 0原文

Io 是否有内置方法来镜像其他语言中的 ord()chr() 函数(即能够获取整数并返回与其关联的 ASCII 字符) ,或者获取一个字符串字符并返回该字符的 ASCII 数字)?

是否有允许格式化输出的 print/write 函数?我想要创建 ANSI 彩色输出到命令行,并且需要打印转义字符(ASCII 字符 27)的方法来执行此操作。

Does Io have built in methods that mirror the ord() and chr() functions in other languages (namely being able to take an integer and return the ASCII character associated with it, or take a string character and return the ASCII number for that character)?

Is there a print/write function that allows for formatting of the output? I'm wanting to create ANSI colored output to the command line, and need the means to print an escape character (ASCII character 27) to do that.

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

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

发布评论

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

评论(1

苦笑流年记忆 2024-12-27 13:18:04

对于 chr() 请参阅 asCharacter /数字“rel=”nofollow noreferrer">Number 对象。

对于 ord() 要么 asBinarySignedIntegerasBinaryUnsignedInteger< /a> 来自 Seqence 对象似乎符合要求。

# ord
"@" asBinarySignedInteger println     # => 64

# chr
64 asCharacter println                # => "@"

For chr() see asCharacter in the Number object.

For ord() either asBinarySignedInteger or asBinaryUnsignedInteger from the Seqence object seems to fit the bill.

# ord
"@" asBinarySignedInteger println     # => 64

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