I have this text I am writing in a Perl CGI program:
$text = $message;
@lines = split(/\n/, $text);
$lCnt .= $#lines+1;
$lineStart = 80;
$lineHeight = 24;
I want to force a return after 45 characters. How do I do that here?
Thanks in advance for your help.