in reply to getting text to line break in an email
will print:$text = "How are you"; $break ='\n'; $text =~ s/\s/$break/g; print $text;
whileHow\nare\nyou
will print:$text = "How are you"; $break ="\n"; $text =~ s/\s/$break/g; print $text;
How are you
|
|---|