Home  >  Article  >  Backend Development  >  Detailed explanation of commonly used regular expression functions in PHP

Detailed explanation of commonly used regular expression functions in PHP

小云云
小云云Original
2018-03-26 10:12:591535browse

This article mainly shares with you the detailed explanation of commonly used regular expression functions in PHP, hoping to help everyone.

Statement: $pattern=regular expression, $subject=target data

1.preg_match() and preg_match_all()

preg_match($pattern,$subject,[array &$matches])
preg_match_all($pattern,$subject,array &$matches)

preg_match will only match once, preg_match_all will All matching strings are matched and placed in the matches array, and both functions have an integer return value.

return The number of times the result is matched;

We can also know the number of key-value pairs in matches through the function return value.

Let’s give a chestnut to experience:

';  
show($m2);  
function show($var = null){  
    if(empty($var)){  
        echo 'null';  
    }  
    else if(is_array($var)||is_object($var)){  
        //array,object  
        echo '
';  
        print_r($var);  
        echo '
'; } else{ //string ,int ,float... echo $var; } } ?>


The above code is to find the number in the string weuyr3ui76as83s0ck9.

2.preg_replace() and preg_filter()

preg_replace($pattern,$replacemenrt,$subject)
preg_filter($pattern,$replacement,$subject)

Let’s give an example:

';  
show($str2);  
function show($var = null){  
    if(empty($var)){  
        echo 'null';  
    }  
    else if(is_array($var)||is_object($var)){  
        //array,object  
        echo '
';  
        print_r($var);  
        echo '
'; } else{ //string ,int ,float... echo $var; } } ?>

In preg_replacement(), not only strings can be used, but also Use an array.

Just need: $pattern = array('/[0-3]/','[4-6]','[7-9]');

$replacement = array('ball','bao','bao');

This means that when a number between 0-3 is matched, "ball" will be used instead; when it matches 4-6 When matching a certain number in , use "宝" to replace it; when matching a certain number in 7-9, use "宝" to replace it.

For example:

';  
show($str2);  
function show($var = null){  
    if(empty($var)){  
        echo 'null';  
    }  
    else if(is_array($var)||is_object($var)){  
        //array,object  
        echo '
';  
        print_r($var);  
        echo '
'; } else{ //string ,int ,float... echo $var; } } ?>

Since the results of preg_filter() and preg_replacement() are the same in the above two examples, what is the difference between them?

When we add $subject = array('weuy','r3ui','76as83','s','0ck9');, the difference between them will be shown:

a974b541f0baaa3fbdc2e2536727118c';  
show($str2);  
  
function show($var = null){  
    if(empty($var)){  
        echo 'null';  
    }  
    else if(is_array($var)||is_object($var)){  
        //array,object  
        echo 'e03b848252eb9375d56be284e690e873';  
        print_r($var);  
        echo 'bc5574f69a0cba105bc93bd3dc13c4ec';  
    }  
    else{  
        //string ,int ,float...  
        echo $var;  
    }  
}  
?>

It can be seen from the above:

The preg_replacement() function will be displayed regardless of whether there is a replaced word, but the preg_filter() function will not be displayed if there is no replaced word.

Related recommendations:

PHP regular expression sharing

Commonly used regular expression examples_regular expression

Summary of PHP regular expressions

The above is the detailed content of Detailed explanation of commonly used regular expression functions in PHP. 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