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.
my $original = '657878768';
my $replacement = '234';
# where in the string you want to insert it
my $index = 5;
# how many characters you want to replace
my $replace = length $replacement;
substr( $original, $index, $replace, $replacement );
substr($original, $index, $replace) = $replacement;