You should rely on HTML to do this - just specify the
width of the column, preferably with a percentage:
<td width="25%">big long sentance . . .</td>
UPDATE:
The following _hack_ will work, but it's nasty:
use constant POS => 10;
my $str = 'big old long sentance blah blah blah';
my $len;
foreach (split(/\s/,$str)) {
$len += length;
print;
($len % POS) ? print ' ' : print '<br>';
}
UPDATED UPDATE:
Thanks
nardo - that's what i get for changing my code
from the testing board to the posting board (this cleverness
thing just isn't working out for me today). Besides, a
ternary operator in void context is evil. . . .
#inside foreach
$len += length;
print;
if ($len > POS) { # thanks nlafferty
print '<br>';
$len = 0;
}
else {
print ' ';
}
Jeff
R-R-R--R-R-R--R-R-R--R-R-R--R-R-R--
L-L--L-L--L-L--L-L--L-L--L-L--L-L--
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.