标签: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));
标签:replace 查找 匹配 hello 参数 match spl php style
原文地址:https://www.cnblogs.com/qq1137674424/p/11392665.html