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

8 lines
111 B
Perl
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
sub encode {
2015-11-18 06:14:39 +00:00
shift =~ s/(.)\1*/length($&).$1/grse;
}
2013-04-10 23:57:08 -07:00
sub decode {
2015-11-18 06:14:39 +00:00
shift =~ s/(\d+)(.)/$2 x $1/grse;
}