in reply to Re: Parse data from a line to get 2 variables
in thread Parse data from a line to get 2 variables

May be better to use \s+ than \t,
this will match one or more whitespace
chars rather than just the one tab.
  • Comment on Re^2: Parse data from a line to get 2 variables

Replies are listed 'Best First'.
Re^3: Parse data from a line to get 2 variables
by davidrw (Prior) on May 13, 2006 at 12:10 UTC
    or use the special split ' ', $line; behavior of split