- or download this
#!/usr/bin/perl
use strict;
use warnings;
...
}
printf "%-15s%s", qq("$i"), qq( => "$o"\n);
}
- or download this
#!/usr/bin/perl
use strict;
use warnings;
...
while (length $o > $max_len and $o =~ s/.$//){}
printf "%-15s%s", qq("$i"), qq( => "$o"\n);
}
- or download this
#!/usr/bin/perl
use strict;
use warnings;
...
$o =~ s/.{$extra}$// if $extra = $calc_code->($o);
printf "%-15s%s", qq("$i"), qq( => "$o"\n);
}