如何在 Io 中映射字符串中的字符?

发布于 2024-12-09 03:13:44 字数 156 浏览 3 评论 0原文

当我尝试映射字符串时,我得到:

Exception: Sequence does not respond to 'map'

显然,Io 没有为序列实现 map 方法。那么如何将字符串序列转换为字符列表呢?

When I try to map over a string, I get:

Exception: Sequence does not respond to 'map'

Apparently, Io does not implement a map method for sequences. So how can I convert a string sequence into a list of characters?

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

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

发布评论

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

评论(1

送你一个梦 2024-12-16 03:13:44

Io 目前没有 Sequence asList 方法,但可以轻松添加。

Range

s := "abc"

# From StackOverflow
# http://stackoverflow.com/questions/4255123/how-do-i-convert-a-string-to-a-list-in-io/4256258#4256258
Sequence asList := method(
    result := list()
    self foreach(x,
        result append(x)
    )
)

s asList map(c,
   "Char: #{c}" interpolate println
)

输出:

Char: a
Char: b
Char: c

Io doesn't currently have a Sequence asList method, but one can easily be added.

Range

s := "abc"

# From StackOverflow
# http://stackoverflow.com/questions/4255123/how-do-i-convert-a-string-to-a-list-in-io/4256258#4256258
Sequence asList := method(
    result := list()
    self foreach(x,
        result append(x)
    )
)

s asList map(c,
   "Char: #{c}" interpolate println
)

Output:

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