标签: ruby string split
我正在尝试将字符串拆分为两部分:第一个字和最后一个字。 我知道我需要使用.split方法,但不知道如何。
.split
答案 0 :(得分:3)
这是你想要做的吗?
first, *_, last = "now is the time for all".split first #=> "now" last #=> "all"