码迷,mamicode.com
首页 > Web开发 > 详细

PHP正则

时间:2019-08-22 11:14:42      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:replace   查找   匹配   hello   参数   match   spl   php   style   

PHP正则

Php正则方法:

Preg_match() 执行一个正则表达式匹配

参数1是reg 参数2是string 返回值是0或1   查到就是1查不到就是0

Preg_match_all()执行一个全局正则表达式匹配

参数1是reg  参数2是string 返回值是0和 n是查找到了总次数 没有查找到就是0

Preg_replace 执行一个正则的搜索和替换

参数1是reg  参数2是newstring 参数3是检索的string,返回值是替换后的新的字符串

第三个参数还可以是个数组 返回值也是数组

 

$str = "[‘hello‘,‘456‘]";

$reg = "/hello/";

echo preg_replace($reg,"world",$str);

echo var_dump(preg_replace($reg,"world",$str));

 

 

 

Preg_split()通过一个正则表达式分隔字符串

第一个参数是reg 第二个参数是string

 

$str = "123helloworldhello1811helloweb";

$reg = "/hello/i";

 

var_dump(preg_split($reg,$str));

 

 

 

 

 

 

 

 

 

 

PHP正则

标签:replace   查找   匹配   hello   参数   match   spl   php   style   

原文地址:https://www.cnblogs.com/qq1137674424/p/11392665.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!