Home  >  Article  >  Backend Development  >  (PHP) Regular expressions-preg_replace() and preg_filter()

(PHP) Regular expressions-preg_replace() and preg_filter()

黄舟
黄舟Original
2016-12-30 11:04:411666browse

<?php
/**
 * 正则表达式练习
 * User: Ollydebug
 * Date: 2015/11/13
 * Time: 13:28
 */

/*
 * preg_replace()不论发不发生替换,值都保留.
 * preg_filter()只保留发生替换的值.
 */

$pattern = array(&#39;/[0123]/&#39;,&#39;/[456]/&#39;,&#39;/[789]/&#39;);
$subject = array("weuy","r3ui","76as83","s","0ck9");
$replacement = array(&#39;百&#39;,&#39;小&#39;,&#39;度&#39;);
$str1 = preg_replace($pattern,$replacement,$subject);
$str2 = preg_filter($pattern,$replacement,$subject);

show($str1);
echo &#39;<hr/>&#39;;
show($str2);

function show($var){
    if(empty($var)){
        echo &#39;null&#39;;
    }elseif(is_array($var)||is_object($var)){
        // array,object
        echo &#39;<pre class="brush:php;toolbar:false">&#39;;
        print_r($var);
        echo &#39;
'; }else{ //string,int,float echo $var; } } ?>

The above is the content of (PHP) regular expressions-preg_replace() and preg_filter(). For more related content, please pay attention to the PHP Chinese website (www.php.cn)!


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