- or download this
my($min, $max) = /\b([0-9a-f]+):([0-9a-f]+)\b/i;
- or download this
foreach($min, $max) {
$_ = hex($_);
}
- or download this
my @list = $min .. $max;
- or download this
my @hex = map { sprintf '%X', $_ } $min .. $max;
- or download this
$, = ','; print @list;
- or download this
$, = ','; print @hex;