常用正则匹配函数
preg_match_all()和preg_match()的区别:
preg_match()
:匹配一次,返回值代表当前有多少个匹配的字符,只是此处只返回0或1;
preg_match_all()
:功能和上面相同只是匹配可以匹配可以匹配多次
preg_replace()
:按照正则表达式完成字符串的替换
preg_split()
:按照正则表达式完成字符串的分割,最终返回分割之后的数组
preg_grep()
:按照正则表达式完成数组元素的匹配,将匹配到的数据以一个新的数组形式返回
字符串的替换:
php
$content = "afsdlafsdiusghg";
$res = preg_replace("/a/","A",$content);
echo $res;
字符串的分割:
php
$content = "my name is kkcode";
$res = preg_split("/\s/",$content);
print_r($res);
匹配数组元素:
php
$input = array(1,2,"aaa","bbb");
$res = preg_grep("/\D/",$input);
print_r($res);