search
HomeBackend DevelopmentPHP TutorialHow to use regular expressions for find and replace in PHP_PHP Tutorial
How to use regular expressions for find and replace in PHP_PHP TutorialJul 21, 2016 pm 03:07 PM
imatchphpusematchimplementreplaceFindregularexpressionconduct

1. preg_match — Perform a regular expression match
int preg_match ( string $pattern , string $subject [, array &$matches [, int $flags = 0 [, int $offset = 0 ]]] )
Search for a match between subject and the regular expression given by pattern.
pattern:
Pattern to be searched, string type.
subject:
Input string.
matches:
If the parameter matches is provided, it will be populated as search results. $matches[0] will contain the text matched by the full pattern, $matches[1] will contain the text matched by the first captured subgroup, and so on.
flags:
flags can be set to the following flag values: PREG_OFFSET_CAPTURE If this flag is passed, the string offset (relative to the target string) will be returned for each occurrence of a match. Note: This will change the array filled in the matches parameter so that each element becomes a string where the 0th element is the matched string and the 1st element is the offset of the matched string in the target string subject. .
offset:
Normally, the search starts from the beginning of the target string. The optional parameter offset is used to specify the search starting from an unknown point in the target string (unit is bytes).
Return value:
preg_match() returns the number of matches for pattern. Its value will be 0 (no match) or 1 because preg_match() will stop searching after the first match. preg_match_all() is different from this, it will search the subject until it reaches the end. If an error occurs preg_match() returns FALSE.
Example:

Copy code The code is as follows:

/*
* The "i" mark after the pattern separator is a case-insensitive search
* will output: 1
*/
echo preg_match("/,s*(php)/i", "In my point, PHP is the web scripting language of choice.");
echo "
"."n";
/*
*will output:Array([ 0]=>, PHP [1]=>PHP)
*/
$matches = array();
preg_match("/,s*(php)/i", "In my point, PHP is the web scripting language of choice. I love php", $matches);
print_r($matches);
echo "
"."n";
/ *
*Will output:Array([0]=>Array([0]=>, PHP [1]=>11) [1]=>Array([0]=>PHP [1]=>13))
*/
preg_match("/,s*(php)/i", "In my point, PHP is the web scripting language of choice. I love php", $matches, PREG_OFFSET_CAPTURE);
print_r($matches);
echo "
"."n";
/*
*will output:Array([0] =>Array([0]=>e php [1]=63) [1]=>Array([0]=>php [1]=>65))
*/
preg_match("/[,a-z]?s*(php)/i", "In my point, PHP is the web scripting language of choice. I love php", $matches, PREG_OFFSET_CAPTURE, 28);
print_r ($matches);
echo "
"."n";
?>

2.preg_match_all — execute a global Regular expression matching
int preg_match_all ( string $pattern , string $subject [, array &$matches [, int $flags = PREG_PATTERN_ORDER [, int $offset = 0 ]]] )
Search all matching results in the subject that match the given regular expression pattern and output them to matches in the order specified by flag. After the first match is found, the subsequence continues to search from the last matching position.
pattern:
The pattern to search for, in string form.
subject:
Input string.
matches:
Multi-dimensional array, output all matching results as output parameters, array sorting is specified by flags.
flags:
can be used in combination with the following tags (note that PREG_PATTERN_ORDER and PREG_SET_ORDER cannot be used at the same time). If no sorting tag is given, it is assumed to be set to PREG_PATTERN_ORDER:
PREG_PATTERN_ORDER:
The result is sorted as $matches[0 ] saves all matches of the complete pattern, $matches[1] saves all matches of the first subgroup, and so on.
PREG_SET_ORDER:
The results are sorted as $matches[0] contains all matches (including subgroups) from the first match, $matches[1] contains all matches (including subgroups) from the second match ), and so on.
PREG_OFFSET_CAPTURE:
If this flag is passed, each found match is returned with its offset relative to the target string increased. Note that this will change each match result string element in matches so that it becomes a match result string whose 0th element is the match result string and the first element is the offset of the match result string in the subject.
Return Value:
Returns the number of complete matches (possibly 0), or FALSE if an error occurs.
Example:
Copy code The code is as follows:

/*
 *将会输出:2
 */
echo preg_match_all("/php/i", "In my point, PHP is the web scripting language of choice. I love php", $matches);
echo "
"."n";
/*
 *将会输出:Array([0]=>, PHP [1]=>PHP) 
 */
$matches = array();
preg_match("/[,a-z]?s*(php)/i", "In my point, PHP is the web scripting language of choice. I love php", $matches);
print_r($matches);
echo "
"."n";
/*
 *将会输出:Array([0]=>Array([0]=>, PHP [1]=>e php) [1]=>Array([0]=>PHP [1]=>php)) 
 */
$matches = array();
preg_match_all("/[,a-z]?s*(php)/i", "In my point, PHP is the web scripting language of choice. I love php", $matches, PREG_PATTERN_ORDER);
print_r($matches);
echo "
"."n";
/*
 *将会输出:Array([0]=>Array([0]=>Array([0]=>, PHP [1]=>11) [1]=>Array([0]=>PHP [1]=>13)) [1]=>Array([0]=>Array([0]=>e php [1]=>63) [1]=>Array([0]=>php [1]=>65)))
 */
$matches = array();
preg_match_all("/[,a-z]?s*(php)/i", "In my point, PHP is the web scripting language of choice. I love php", $matches, PREG_SET_ORDER|PREG_OFFSET_CAPTURE);
print_r($matches);
echo "
"."n";
/*
 *Array([0]=>Array([0]=>e php [1]=>63) [1]=>Array([0]=>php [1]=>65))
 */
$matches = array();
preg_match_all("/[,a-z]?s*(php)/i", "In my point, PHP is the web scripting language of choice. I love php", $matches, PREG_SET_ORDER|PREG_OFFSET_CAPTURE, 28);
print_r($matches);
echo "
"."n";
?>

3.preg_split — 通过一个正则表达式分隔字符串
array preg_split ( string $pattern , string $subject [, int $limit = -1 [, int $flags = 0 ]] )
通过一个正则表达式分隔给定字符串.
pattern:
用于搜索的模式,字符串形式。
subject:
输入字符串
limit:
如果指定,将限制分隔得到的子串最多只有limit个,返回的最后一个 子串将包含所有剩余部分。limit值为-1, 0或null时都代表"不限制", 作为php的标准,你可以使用null跳过对flags的设置。
flags:
flags 可以是任何下面标记的组合(以位或运算 | 组合):
PREG_SPLIT_NO_EMPTY:
如果这个标记被设置, preg_split() 将进返回分隔后的非空部分。
PREG_SPLIT_DELIM_CAPTURE:
如果这个标记设置了,用于分隔的模式中的括号表达式将被捕获并返回。
PREG_SPLIT_OFFSET_CAPTURE:
如果这个标记被设置, 对于每一个出现的匹配返回时将会附加字符串偏移量. 注意:这将会改变返回数组中的每一个元素, 使其每个元素成为一个由第0个元素为分隔后的子串,第1个元素为该子串在subject中的偏移量组成的数组。
返回值:
返回一个使用 pattern 边界分隔 subject 后得到 的子串组成的数组。
示例:
复制代码 代码如下:

/*
 *将会输出:
 *Array ( [0] => In my point, [1] => is the web scripting language of choice. I love [2] => )
 */
$matches = array();
print_r(preg_split("/php/i", "In my point, PHP is the web scripting language of choice. I love php"));
echo "
"."n";
/*
 *将会输出:
 *Array ( [0] => In my point, [1] => is the web scripting language of choice. I love php )
 */
$matches = array();
print_r(preg_split("/php/i", "In my point, PHP is the web scripting language of choice. I love php", 2));
echo "
"."n";
/*
 *将会输出:
 *Array ( [0] => In my point, [1] => is the web scripting language of choice. I love )
 */
$matches = array();
print_r(preg_split("/php/i", "In my point, PHP is the web scripting language of choice. I love php", -1, PREG_SPLIT_NO_EMPTY));
echo "
"."n";
?>

4.preg_quote — Escape regular expression characters
string preg_quote ( string $str [, string $delimiter = NULL ] )
preg_quote() required The str argument adds a backslash to each character in the regular expression syntax. This is typically used when you have some runtime strings that need to be matched as regular expressions.
Regular expression special characters are: . + * ? [ ^ ] $ ( ) { } = ! | : -
str:
Input string
delimiter:
If the optional parameter delimiter is specified, it will also be escaped. This is typically used to escape delimiters used by PCRE functions. / is the most common delimiter.
Return value:
Returns the escaped string.
Example:
Copy codeThe code is as follows:

//In this example , preg_quote($word) is used to maintain the original meaning of the asterisk so that it does not use the special semantics in regular expressions.
$textbody = "This book is *very* difficult to find.";
$word = "*very*";
$textbody = preg_replace ("/" . preg_quote($word) . " /", "" . $word . "", $textbody);
//will output This book is *very* difficult to find.
echo htmlspecialchars($textbody);
?>

5.preg_grep — Returns array entries matching pattern
array preg_grep ( string $pattern , array $input [, int $flags = 0 ] )
Returns an array of elements in the given array input that match the pattern pattern.
pattern:
to search The pattern, in string form.
input:
Input array.
flags:
If set to PREG_GREP_INVERT, this function returns an array consisting of elements in the input array that do not match the given pattern pattern.
Return value:
Returns an array indexed using the key in the input.
Example:
Copy code The code is as follows:

$array = array("abc", "dd", "123", "123.22", "word123", "33.2", "0.22");
//Return all elements containing floating point numbers
//Output: Array ( [3] => 123.22 [5] => 33.2 [6] => 0.22 )
$fl_array = preg_grep("/ ^(d+)?.d+$/", $array);
print_r($fl_array);
//Return all elements containing floating point numbers
//Output: Array ( [0] => ; abc [1] => dd [2] => 123 [4] => word123 )
$fl_array = preg_grep("/^(d+)?.d+$/", $array, PREG_GREP_INVERT) ;
print_r($fl_array);
?>

6.preg_replace — Perform a regular expression search and replace
mixed preg_replace ( mixed $pattern , mixed $replacement , mixed $subject [, int $limit = -1 [, int &$count ]] )
Search for the part of the subject that matches pattern and replace it with replacement.
pattern:
The pattern to search for. Can be a string or an array of strings. Several PCRE modifiers, including 'e' (PREG_REPLACE_EVAL), can be specified for this function.
replacement:
A string or array of strings used for replacement. If this parameter is a string and pattern is an array, then all patterns are replaced with this string. If pattern and replacement are both arrays, each pattern is replaced with the corresponding element in replacement. If there are fewer elements in replacement than in pattern, the extra pattern is replaced with an empty string. Replacement can contain back references \n or (available in PHP 4.0.4 and above) $n, the latter is preferred syntactically. Each such reference will be replaced by the text captured by the nth matching capturing subgroup. n can be 0-99, \0 and $0 represent the complete pattern matching text. The serial number counting method of capturing subgroups is: the left bracket representing the capturing subgroup is counted from left to right, starting from 1. If you want to use backslashes in replacement, you must use 4 ("\\", translator's annotation: Because this is first a PHP string, after escaping, it is two, and then it is considered by the regular expression engine is an original backslash).
When working in replacement mode and the backreference needs to be followed by another number (for example: adding an original number immediately after a matching pattern), you cannot use the syntax \1 to describe the backreference. . For example, \11 will make preg_replace() unable to understand whether you want a \1 backreference followed by an original 1, or a \11 backreference followed by nothing. The solution in this case is to use ${1}1.
This creates a separate $1 backreference, a separate source1. When the e modifier is used, this function will escape some characters (i.e.: ', ", and NULL) and then replace the backreference. When this is done, make sure that the backreference is resolved without single or double quotes. syntax error (for example: 'strlen('$1')+strlen("$2")'). Make sure it conforms to PHP's string syntax and conforms to the eval syntax, because after completing the replacement, the
engine will replace the resulting characters. The string is evaluated as PHP code using the eval method and the return value is used as the string that ultimately participates in the replacement.
subject:
The string or array of strings to be searched and replaced. If subject is an array, search and. Replacement is performed on each element of the subject, and the return value will also be an array.
limit:
The maximum number of replacements per mode is -1 (unlimited).
count:
If specified, it will be filled with the number of completed replacements.
Return value:
If subject is an array, preg_replace() returns an array, otherwise it returns a string. . If a match is found, the replaced subject is returned, otherwise the unchanged subject is returned.
Example:
Use a back reference to follow the original text:
Copy code The code is as follows:

$string = 'April 15, 2003';
/ *
*w+ character repeated one or more times
*d+ number repeated one or more times
*i ignore case
*/
$pattern = '/(w+) (d+) , (d+)/i';
/*
*$0 Complete pattern matching text
*${1}1 Pattern matching text in the first parentheses and add 1 at the end
*\3 Pattern matching text in the third parentheses
*/
$replacement = '$0:
${1}1,\3';
echo preg_replace($ pattern, $replacement, $string);
?>

Use an index-based array in preg_replace():
Copy codeThe code is as follows:

$string = 'The quick brown fox jumped over the lazy dog.';
$patterns = array();
$patterns[0] = '/quick/';
$patterns[1] = '/brown/';
$patterns[2] = '/fox/';
$replacements = array();
$replacements[2] = 'bear';
$replacements[1] = 'black';
$replacements[0] = 'slow';
//Will output: The bear black slow jumped over the lazy dog.
echo preg_replace($patterns, $replacements, $string);
//We can get the desired results by sorting the patterns and replacement content by key.
ksort($patterns);
ksort($replacements);
//Will output: The slow black bear jumped over the lazy dog.
echo preg_replace($patterns, $replacements, $string);

Replace some values:
Copy the code The code is as follows:

$patterns = array ('/(19|20)(d{2})-(d{1,2})-(d{1,2})/ ',
'/^s*{(w+)}s*=/');
$replace = array ('3/4/12', '$1 =');
echo preg_replace( $patterns, $replace, '{startDate} = 1999-5-27');
?>

Use modifier 'e':
Copy code The code is as follows:

$html_body = "

hello p>";
//Will output:

hello


echo htmlspecialchars(preg_replace("/(?)(w+)( [^>]*>)/e",
              "'\1'.strtoupper('\2').'\3'",
                                                                                                  

Strip whitespace characters:

Copy code The code is as follows:
$str = 'foo o';
$str = preg_replace('/ss+/', ' ', $str);
// will be changed to 'foo o'
echo $str ;
?>

Use parameter count:

Copy code The code is as follows:
$count = 0;
echo preg_replace(array('/d/', '/s/'), '*', 'xp 4 to', -1 , $count );
//Equivalent to echo preg_replace('/d|s/', '', 'xp 4 to', -1 , $count);
echo $count; //3
?>


7.preg_replace_callback — Perform a regular expression search and replace with a callback
mixed preg_replace_callback ( mixed $pattern , callable $callback , mixed $subject [, int $limit = -1 [, int &$count ]] )
The behavior of this function is equivalent to preg_replace except that you can specify a callback instead of replacement to calculate the replacement string. ().
pattern:
The pattern to search for, which can be a string or an array of strings.
callback:
A callback function that is called every time a replacement is needed. The parameters obtained by the function when called are the results matched from the subject. The callback function returns the string that actually participates in the replacement.
You may often need the callback function to be used only in one place: preg_replace_callback(). In this case, you can use anonymous functions to define an anonymous function as a callback when preg_replace_callback() is called. This way you keep all the calling information in the same place and don't pollute the function namespace with a callback function name that's not used anywhere else.
subject:
The target string or string array to be searched and replaced.
limit:
The maximum number of substitutions for each subject string for each pattern. The default is -1 (no limit).
count:
If specified, this variable will be filled with the number of times the replacement was performed. // Increase the year in the text by one year.
$text = "April fools day is 04/01/2002n";
$text.= "Last christmas was 12/24/2001n ";
//Callback function
function next_year($matches){ // Usually: $matches[0] is the completed match // $matches[1] is the first Match of a capturing subgroup // and so on
return $matches[1].($matches[2]+1);
}
/**
*will output:
*April fools day is 04/01/2003
*Last christmas was 12/24/2002
*/
echo preg_replace_callback(
“|(d{2}/d{2}/)(d{4})|",
“next_year”,
“ $text);
/ /Use create_function
echo preg_replace_callback(
“|(d{2}/d{2}/)(d{4})|”,
create_function(
“$matches”,
               'return $matches[1].($matches[2]+1);'
              ),
                                                                             

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/327579.htmlTechArticle1. preg_match — perform a regular expression match int preg_match ( string $pattern , string $subject [, array lt ;?php /* *The "i" mark after the pattern separator is case insensitive...
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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!