This seems to require the 'execute' option on the substitute command so the replacement text is treated as a fragment of Perl code:
$str =~ s/((.)\2+)/$2 . length($1)/ge;
Script
#!/usr/bin/env perl
use strict;
use warnings;
my $original = "aaabbcccdddd";
my $alternative = "aaabbcccddddeffghhhhhhhhhhhh";
sub proc1
{
my($str) = @_;
$str =~ s/(.)\1+/$1/g;
print "$str\n";
}
proc1 $original;
proc1 $alternative;
sub proc2
{
my($str) = @_;
$str =~ s/((.)\2+)/$2 . length($1)/ge;
print "$str\n";
}
proc2 $original;
proc2 $alternative;
Output
abcd
abcdefgh
a3b2c3d4
a3b2c3d4ef2gh12
Could you please break down the regular expression to explain how it works?
I'm assuming it is the match part that is problematic and not the replacement part.
The original regex is:
(.)\1+
This captures a single character (.) that is followed by the same character repeated one or more times.
The revised regex is 'the same', but also captures the whole pattern:
((.)\2+)
The first open parenthesis starts the overall capture; the second open parenthesis starts the capture of a single character. But, it is now the second capture, so the \1 in the original needs to become \2 in the revision.
Because the search captures the whole string of repeated characters, the replacement can determine the length of the pattern easily.