Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
echo "The tree fell onto the log" | perl -lne 's/(.)\1/${1}2/g;print'
$string =~ s/(.)\1/${1}2/gi;
$string =~ s/((.)\2+)/"$2" . length($1)/ge;