PHPpreg_replace() Function
Example
Use a case-insensitive regular expression to replace Microsoft with W3Schools in a string:
$str = 'Visit Microsoft!';
$pattern = '/microsoft/i';
echo preg_replace($pattern, 'W3Schools', $str);
?>
Definition and Usage
Thepreg_replace() function returns a string or array of strings where all matches of apattern or list of patterns found in the input are replaced with substrings.
There are three different ways to use this function:
1. One pattern and a replacement string. Matches of the pattern are replaced with thereplacement string.
2. An array of patterns and a replacement string. Matches any of the patterns arereplaced with the replacement string.
3. An array of patterns and an array of replacement strings. Matches of each patternare replaced with the replacement string at the same position in the replacementsarray. If no item is found at that position the match is replaced with an empty string.
Replacement strings may contain a backreference in the form \n or $n where n is the indexof a group in the pattern. In the returned string, instances of \n and $n will be replaced withthe substring that was matched by the group or, if \0 or $0 are used, by the wholeexpression.
Note: For each input string, the function evaluates the patterns in the order that they aregiven. The result of evaluating the first pattern on the string is used as the input string forthe second pattern and so on. This can lead to unexpected behaviour.
Syntax
Parameter Values
| Parameter | Description |
|---|---|
| patterns | Required. Contains a regular expression or array of regular expressions |
| replacements | Required. A replacement string or an array of replacement strings |
| input | Required. The string or array of strings in which replacements are being performed |
| limit | Optional. Defaults to -1, meaning unlimited. Sets a limit to how many replacements can be done in each string |
| count | Optional. After the function has executed, this variable will contain a number indicating how many replacements were performed |
Technical Details
| Return Value: | Returns a string or an array of strings resulting from applying the replacements to the input string or strings |
|---|---|
| PHP Version: | 4.0.5+ |
| Changelog: | PHP 5.1.0 - The count parameter was added |
❮ PHP RegExp Reference

