in reply to Re^2: Printing a String (TOO stupid?)
in thread Printing a String (TOO stupid?)
Updated
I was wrong. Somehow, I remembered it working differently.
But { local $/ = ''; chomp($x); } seems to work. Needs more testing and I'm not sure there would still be a performance benefit.
Try chomp; chomp; instead of chop; chop;
chomp is conditional. Being built in, I would expect it to be more efficient than a regex.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Printing a String (TOO stupid?)
by Laurent_R (Canon) on Jun 18, 2014 at 18:46 UTC |