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


in reply to Re^3: Increasing a field size for a record
in thread Increaing a field size for a record

Good point! After a little experimentation, it appears that the following also works:

for my $line (@lines) { my @fields = split ' ', $line; $fields[1] .= ' ' x (50 - length $fields[1]); $line = join(' ', @fields); }

Thanks, nice catch!

Athanasius <°(((><contra mundum