in reply to (jeffa) Re: Wordwrap text
in thread Wordwrap text

So i want
use constant POS => 10; my $str = '$comment'; my $len; foreach (split(/\s/,$str)) { $len += length; print; if ($len > 10) { print '<br>'; $len = 0; } else { print ' '; }
? Where does the POS come in?