in reply to Re^2: PDF Letter format
in thread PDF Letter format
To this:my @all_lines = split/\n+/, $summary;
This way, “split” will only match one new line character and if I want to add new lines, I just type it.my @all_lines = split/\n/, $summary;
|
|---|