Hello folks! welcome back to a new section of our tutorial on PHP. In this tutorial guide, we are going to be studying about the PHP preg_replace() function.
PHP preg_replace() function works like the PHP POSIX ereg_replace() function, except that regular expressions can be used in the pattern and replacement input parameters.
The optional input parameter limit is used for specifying how many matches should take place.
If the optional parameter $count is passed, then this variable is going to be filled with the number of replacements done.
PHP preg_replace() function works like the PHP POSIX ereg_replace() function, except that regular expressions can be used in the pattern and replacement input parameters.
The optional input parameter limit is used for specifying how many matches should take place.
If the optional parameter $count is passed, then this variable is going to be filled with the number of replacements done.
Syntax
The following below is the syntax for the preg_replace() function -
mixed preg_replace (mixed pattern, mixed replacement, mixed string [, int limit [, int & $count ]] );
Return Value
- After the replacement has occurred, the modified string will be returned.
- If no matches are found, the string will not be changed.
Example
Following is a simple example -
<?php $copy_date = "Copyright 2017"; $copy_date = preg_replace("([0-9]+)", "2020", $copy_date); print $copy_date; ?>
Output
When the above code is executed, it will produce the following result -
Copyright 2020
READ: PHP ereg() Function
Alright guys! This is where we are rounding up for this tutorial post. In our next tutorial guide, we are going to be discussing about the PHP preg_split() Function.
Feel free to ask your questions where necessary and we will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.
Feel free to ask your questions where necessary and we will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.