andreas1234567 has asked for the wisdom of the Perl Monks concerning the following question:
I'm seeking wisdom with respect to Text::Table. Variations of this subject has been previously discussed in Text::Table w/ newlines and Printing Issues with Text::Table.
The code below prints two tables, one using load with AoA, the second reading __DATA__. I would expect the two tables to be identical. Why are they not identical? What does it take to create multiline cells when reading from __DATA__?
cpan[1]> install Text::Table Text::Table is up to date (1.107).
Outputuse warnings; use strict; use Text::Table; my $tb1 = Text::Table->new( qw( A B C ) ); $tb1->load( [ "1", "2", "3" ], [ "a\nb", "c", "d" ], [ "e", "f\ng", "h" ], [ "i", "j", "k\nl" ], [ "m", "n", "o" ] ); print $tb1; print q{-} x 40 . "\n"; my $tb2 = Text::Table->new( qw( A B C ) ); $tb2->add(split(q{,}, $_)) while (<DATA>); print $tb2; __DATA__ "1", "2", "3" "a\nb", "c", "d" "e", "f\ng", "h" "i", "j", "k\nl" "m", "n", "o"
$ perl text.table.pl A B C 1 2 3 a c d b e f h g i j k l m n o ---------------------------------------- A B C "1" "2" "3" "a\nb" "c" "d" "e" "f\ng" "h" "i" "j" "k\nl" "m" "n" "o"
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Multiline cells with Text::Table when reading from __DATA__
by diotalevi (Canon) on Aug 20, 2007 at 15:22 UTC |