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.
$str = 'abc123abc456' ;
$b = 'abc';
$c = 'xyz' ;
$str =~ s/(.*?$b)(.*?)$b(.*)/$1$2$c$3/ ;
$str=~s/$b(.*?)$b/$b$1$c/;