in reply to How to Extract PDF tables using Perl
The quick and dirty way to do this is to split /\s+/, $text
now loop over the resulting array
Like
while ( my $col = shift @array) { $date{$col} = [ shift @array, shift @array]; }
Untested!
Cheers Rolf
(addicted to the Perl Programming Language and ☆☆☆☆ :)
Je suis Charlie!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How to Extract PDF tables using Perl
by perlPsycho (Initiate) on May 11, 2016 at 09:39 UTC | |
by Anonymous Monk on May 25, 2016 at 05:54 UTC | |
by Anonymous Monk on May 25, 2016 at 06:04 UTC | |
by perlPsycho (Initiate) on May 27, 2016 at 06:53 UTC |