Tricky question. I know how to remove line break characters and spaces by
using the code below:
$message =~ s/\n//g;
$message =~ s/\s//g;
........... how do you do it if you do not want to remove the first line break??? - but then remove the rest. So in other words, you want to skip the first line break.