- or download this
my $length = $total_length - length($prefix);
my $format = "${prefix}%0${length}d";
- or download this
my $format = $prefix . '%0' . $length . 'd';
- or download this
$from .. $to
- or download this
map sprintf( $format, $_ ), ANONYMOUS_LIST
- or download this
for (ANONYMOUS_LIST) {
STRING = sprint( $format, $_ );
put STRING into ANOTHER_ANONYMOUS_LIST;
}