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


in reply to Formatting Strings Without Interpolating Whitespace

This answer seems so facile that I'm certain I must have missed something, but what if you remove \n from within your strings?

(In this case I prefer to use a heredoc, but a multi-line quoted string also works.)


Improve your skills with Modern Perl: the free book.

Replies are listed 'Best First'.
Re^2: Formatting Strings Without Interpolating Whitespace
by BJ_Covert_Action (Beadle) on Jan 19, 2012 at 21:59 UTC

    That was actually my first solution, but when I start increasing the complexity of the formatting from what I've shown here, that solution falls a bit short. Still, not a bad way to brute force it if I don't want to risk exploding my code all over the place by testing Xiong's solution.