RosettaCodeData/Task/Run-length-encoding/Perl/run-length-encoding-2.pl

8 lines
139 B
Perl
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
sub encode {
shift =~ s/(.)\1{0,254}/pack("C", length($&)).$1/grse;
}
sub decode {
shift =~ s/(.)(.)/$2 x unpack("C", $1)/grse;
}