Honorable Monks,

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).
use 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"
Output
$ 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"
--
Andreas

In reply to Multiline cells with Text::Table when reading from __DATA__ by andreas1234567

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.