What will be the value of $str after execution of the following code? my $str = '112133'; $str =~ s/(.)\1/$1/g;
112133
1233
1213
12133