- or download this
$x =~ tr/://d;
my $y = pack('H*', $x);
- or download this
my $y = pack('H*', $x =~ tr/://dr); # 5.14+ required
- or download this
(my $y = $x) =~ s/([0-9a-fA-F]{2}):?/chr(hex($1))/eg;
- or download this
my $y = $x =~ s/([0-9a-fA-F]{2}):?/chr(hex($1))/egr; # 5.14+ required
- or download this
my $y = pack 'C*', map hex, split /:/, $x;
- or download this
my $y = join '', map chr hex, split /:/, $x;