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


in reply to Oneliner with substring trimming and padding

What about the following approach:

  1. adding a "maximum number" of padding-characters at the end of your substring
  2. cutting the substing back to the desired number of characters
That way you avoid calculating the real number of needed padding-characters

Just an idea. Rata

  • Comment on Re: Oneliner with substring trimming and padding

Replies are listed 'Best First'.
Re^2: Oneliner with substring trimming and padding
by Neighbour (Friar) on Jul 17, 2012 at 12:18 UTC
    Sure, but how do you do this in an inplace-edit oneliner? :)