On 2012-04-04 16:33, lina wrote:

 my ($keys, $value) = split /[ ]+/, $line;

That is better written as
  split " ", $line;

See perldoc -f split, about this special (and default) split mode.

--
Ruud

--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
http://learn.perl.org/


Reply via email to