Home  >  Article  >  Backend Development  >  php text replacement specified times

php text replacement specified times

*文
*文Original
2017-12-27 18:06:151912browse

This article mainly introduces how to replace only once or only N times in PHP, and introduces the theme through a simple example. I hope to be helpful.

We all know that in PHP, Strtr, strreplace and other functions can be used to replace, but they replace all of them every time. For example:
"abcabbc", this string If you use the function above to replace b, then it will replace them all, but what if you want to replace only one or two? See the solution below:
This is a rather interesting question. , I happened to have done similar processing before. At that time, I directly used preg_replace to implement it.

# Mixed Preg_replace (Mixed Pattern, Mixed Replacement, Mixed Subject [, Int Limit] ## Search for the matching items of Pattern mode and replaced it to replacement. If limit is specified, only limit matches are replaced; if limit is omitted or has a value of -1, all matches are replaced.
Because the fourth parameter of preg_replace can limit the number of replacements, it is very convenient to deal with this problem in this way. But after looking at the function comments about str_replace on php.net, we can actually pick out a few representative functions.

Method 1: str_replace_once
IdeaFirst, find the location of the keyword to be replaced, and then use the substr_replace function to directly replace it .



Method 2, str_replace_limit
Ideas Still use preg_replace, but its parameters are more like preg_replace, and some special characters are escaped, making it more versatile.


$v) {
$search[$k] = '`' . preg_quote($search[$k],'`') . '`';
}
}
else {
$search = '`' . preg_quote($search,'`') . '`';
}
// replacement
return preg_replace($search, $replace, $subject, $limit);
}
?>


Related recommendations:

php Introduction to string segmentation and comparison

php Detailed explanation of the use of string regular replacement function preg_replace

php string replacement method

The above is the detailed content of php text replacement specified times. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn