in reply to Re: trailing white spaces when pushing into array
in thread trailing white spaces when pushing into array

yuck!

$content = $baseurl . join("", @list);
or
$content = join("", $baseurl, @list);

Replies are listed 'Best First'.
Re^3: trailing white spaces when pushing into array
by BillKSmith (Monsignor) on Aug 23, 2018 at 20:58 UTC
    Much better. I only addressed the symptom, not the real problem.
    Bill