in reply to Re: searching a file, results into an array
in thread searching a file, results into an array
or as given in the referenced comment:($filename,$description) = ($line =~ m/(^\S+)\s+(.*)/);
if($line =~ m/(^\S+)\s+(.*)/) { push @documents, [$1,$2]; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: searching a file, results into an array
by Random_Walk (Prior) on Oct 14, 2004 at 10:41 UTC |