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"
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |