in reply to
remove line feed at the end
The below code will convert the entire file as a single line.
while (<DATA>) { chomp($_); print "$_"; }
[download]
Comment on
Re: remove line feed at the end
Download
Code
In Section
Seekers of Perl Wisdom