使用 Ruby 1.9.1,我如何一次访问该字符串的一个字符?

发布于 2024-08-17 07:04:00 字数 381 浏览 1 评论 0原文

首先让我给您带有英语衍生词的希腊单词列表。查看 a 表的第一列。请注意,有像ἄβαΨ这样的词。

使用比 Ruby 1.8 具有更好编码支持的 Ruby 1.9.1,我如何迭代形成该单词的每个字符?例如,我想按顺序获取字母,一次一个,例如:

ἄ
β
α
ξ

我不太确定如何去做,因为 .size 方法报告了不同的长度弦比我们感知到的弦更重要。接下来我可以尝试什么?

Let me start by giving you List of Greek words with English derivatives. Look at the a table, first column. Notice there are words like ἄβαξ.

Using Ruby 1.9.1, which has better encoding support than Ruby 1.8, how could I iterate over each character forming that word? For example, I'd like to get the letters in order, one at a time, like:

ἄ
β
α
ξ

I'm not really sure how to go about that, as the .size method reports a different length of the string than the ones we perceive. What can I try next?

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

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

发布评论

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

评论(2

紙鸢 2024-08-24 07:04:00

示例:

#!/usr/bin/env ruby19

str = "ἄβαξ"
puts "#{str} - encoding: #{str.encoding.name} / size: #{str.size}"
str.each_char do |c|
  puts c
end

使用一些 Google-fu,您会发现很多好文章< /a> 关于 Ruby 1.9 和字符编码。

Example:

#!/usr/bin/env ruby19

str = "ἄβαξ"
puts "#{str} - encoding: #{str.encoding.name} / size: #{str.size}"
str.each_char do |c|
  puts c
end

Using some Google-fu, you'll find a lot of good articles on Ruby 1.9 and character encoding.

一直在等你来 2024-08-24 07:04:00

以下似乎适用于 1.9

testStr="ἄβαξ"
testStr.each_char { |k|
        puts k
}

The following seems to work in 1.9

testStr="ἄβαξ"
testStr.each_char { |k|
        puts k
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文