in reply to Strings overwrite themselves in print command
It seems highly likely that the variables you are printing have trailing carriage returns. Try stripping these before printing. eg:
$csvContent[0] =~ s/\r$//;
etc.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Strings overwrite themselves in print command
by tdsny71 (Initiate) on Jun 28, 2016 at 06:28 UTC |