如何拆分Ruby字符串的第一个和最后一个元素?

时间:2014-09-27 00:48:01

标签: ruby string split

我正在尝试将字符串拆分为两部分:第一个字和最后一个字。 我知道我需要使用.split方法,但不知道如何。

1 个答案:

答案 0 :(得分:3)

这是你想要做的吗?

first, *_, last = "now is the time for all".split
first #=> "now"
last  #=> "all"