我怎么能在each_char中做到这一点?

时间:2013-06-05 04:36:15

标签: ruby

我有这个:

sentence.each_char {|char|
   ......
   ......
}

我想要这个:

sentence.each_char {|char|
   if (char is the last char)
     ......
   end
}

有人知道我该怎么做吗?

2 个答案:

答案 0 :(得分:21)

length = sentence.length
sentence.each_char.with_index(1){|char, i|
  if i == length
    ...
  end
}

答案 1 :(得分:12)

您正在寻找'with_index'选项

sentence.each_char.with_index {|char, index|
  if (index == sentence.length-1)
   ......
  end
}