Subject: [ruby-talk:19924] efficent way to split up arguments of a string
From: "Jonathan Brannan" <vod home.com>
Date: Fri, 17 Aug 2001 08:17:42 +0900
Ive been reading in a file and need to split the first word and the rest of
the arguments.
Right now im using line.split[1..-1].join(" ") to get the args back as a
string, was just wondering if there was a better way.