PodMaster has asked for the wisdom of the Perl Monks concerning the following question:
Or a module which would neatly format/wrap an AoAoA something like this:
Now I could write something, and probably will eventually, but i'm really dying for a canned solution (this isn't on my to-do list yet, and i'd rather it don't end up there).my @Table = ( [ ["0123456","bar","0" ], ["Let's talk about these excellent numbers"], ["Bah bar" ], [ '0123456' ] ] ); use Text::WrapAoAoA; print wrapit( { colsep => ' ', colwrap => [ 4, 10], asonetable => 1, },@Table); print wrapit( { colsep => ' ', colwrap => [ 4, 10], asonetable => 0, },@Table); __END__ # results if wrapping for 1st column was 4 # and for 2nd column was 10 # with a separation between them of 1 space 0123- Let's talk 456 about these bar excellent 0 numbers Bah bar 0123456 # or even this, given the option 0123- Let's talk 456 about these excellent numbers bar Bah bar 0 0123456
update: removed a stray }
MJD says you can't just make shit up and expect the computer to know what you mean, retardo! ** The Third rule of perl club is a statement of fact: pod is sexy. |
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: AoAoA to Text (or HTML table to text)
by steves (Curate) on Feb 07, 2003 at 13:19 UTC | |
by PodMaster (Abbot) on Feb 07, 2003 at 14:10 UTC | |
Re: AoAoA to Text (or HTML table to text)
by CountZero (Bishop) on Feb 07, 2003 at 16:49 UTC | |
by PodMaster (Abbot) on Feb 07, 2003 at 17:10 UTC | |
Re: AoAoA to Text (or HTML table to text)
by mattr (Curate) on Feb 09, 2003 at 10:32 UTC | |
by steves (Curate) on Feb 09, 2003 at 11:40 UTC | |
Re: AoAoA to Text (or HTML table to text)
by Anonymous Monk on Nov 12, 2004 at 16:07 UTC |