in reply to Generating standard length strings
sub standard_fill { my( $string, $length ) = @_; sprintf "%-${length}s", $string } [download]