http://www.perlmonks.org?node_id=1062791


in reply to Re: add double quotes to a perl variable
in thread add double quotes to a perl variable

ok so there was a new line at the end of each interation of while. while adds a new line after each print?
  • Comment on Re^2: add double quotes to a perl variable

Replies are listed 'Best First'.
Re^3: add double quotes to a perl variable
by Kenosis (Priest) on Nov 15, 2013 at 20:49 UTC

    An input record separator (found in Perl's variable $/ and usually set to \n) determines the end of a line ('record') when reading from a file--like you were doing in your while loop. It's kept on the end of the line, unless you do something like chomping the line. In your case, not removing the input record separator produced undesirable results in your final output. (Sometimes, however, the very last line of a file may not terminate with an input record separator, because the line ends at the end of the file.)