From: Michael Myers Date: 2011-03-21T19:17:58+09:00 Subject: String split into an array Hi, is it possible to do something like that in ruby? (Perl-Code) ($run_number, $iteration, $day, @nodes) = split /\s+/; String looks like the first 3 numbers for run, iteration and day followed by n numbers for each node. I want to bind those n nodes to an array @nodes. run_number, iteration, day, nodes = line.split(" ") does not work, nodes only get the first node and the rest of the line is ignored. -- Posted via http://www.ruby-forum.com/.