This site is mobile accessible. Press the "Tap Here" button to use a different font-size.
Smartphone icons created by Freepik - Flaticon
Visit W3Schools!
<?php // define string $str = "Visit Microsoft!"; // case-insensitive regular expression to replace Microsoft with W3Schools in a string $pattern = "/microsoft/i"; // display the results of the case-insensitive regular expression search and replace Microsoft with W3Schools in a string echo preg_replace($pattern, "W3Schools", $str); ?>
The
function will replace all of the matches of the pattern in a string with another string.