这篇文章将为大家详细讲解有关PHP中的正则表达式处理函数是什么,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。
一、preg_replace($pattern,$replacement,$subject)
执行一个正则表达式的搜索和替换。
<?php
echo "<pre>";
$str = "12,34:56;784;35,67:897:65";
//要求将上面的:,;都换成空格
print_r(preg_replace("/[,;:]/"," ",$str));
?>
输出
12 34 56 784 35 67 897 65
二、preg_match($pattern,$subject,&$matches)
执行匹配正则表达式
<?php
echo "<pre>";
$str = "<a href=\"https://www.baidu.com\">团购商品</a>";
//匹配出链接地址
preg_match("/<a href=\"(.*?)\">.*?<\/a>/",$str,$res);
print_r($res);
?>
输出
Array
(
[0] => 团购商品
[1] => https://www.baidu.com
)
三、preg_match_all($pattern,$subject,&$matches)
执行一个全局正则表达式匹配
<?php
echo "<pre>";
$str=<<<EOF
<div>
<a href="index.php" rel="external nofollow" >首页</a>
<a href="category.php?id=3" rel="external nofollow" >GSM手机</a>
<a href="category.php?id=4" rel="external nofollow" >双模手机</a>
<a href="category.php?id=6" rel="external nofollow" >手机配件</a>
</div>
EOF;
//使用全局正则匹配
preg_match_all("/<a href=\"(.*?)\">(.*?)<\/a>/s",$str,$res);
print_r($res);
?>
输出
Array
(
[0] => Array
(
[0] => 首页
[1] => GSM手机
[2] => 双模手机
[3] => 手机配件
)
[1] => Array
(
[0] => index.php
[1] => category.php?id=3
[2] => category.php?id=4
[3] => category.php?id=6
)
[2] => Array
(
[0] => 首页
[1] => GSM手机
[2] => 双模手机
[3] => 手机配件
)
)
四、preg_split($pattern,$subject)
通过一个正则表达式分隔字符串
<?php
echo "<pre>";
$str = "12,34:56;784;35,67:897:65";
//分隔字符串
$arr = preg_split("/[,;:]/",$str);
print_r($arr);
?>
输出
Array
(
[0] => 12
[1] => 34
[2] => 56
[3] => 784
[4] => 35
[5] => 67
[6] => 897
[7] => 65
)
五、preg_quote($str)
转义正则表达式字符
正则表达式特殊字符有:. \ + * ? [ ^ ] $ ( ) { } = ! < > : -
<?php
echo "<pre>";
echo preg_quote("(abc){10}");//在每个正则表达式语法的字符前增加一个反斜杠
?>
输出
\(abc\)\{10\}
六、子存储
<?php
echo "<pre>";
//子存储使用
$date="[2012-08-09],[2012,09-19],[2011/08,09],[2012/10/09],[2013,08,01]";
//将上面字串中合法的日期匹配出来
preg_match_all("/\[[0-9]{4}([\-,\/])[0-9]{2}\\1[0-9]{2}\]/",$date,$a);
print_r($a);
?>
输出
Array
(
[0] => Array
(
[0] => [2012-08-09]
[1] => [2012/10/09]
[2] => [2013,08,01]
)
[1] => Array
(
[0] => -
[1] => /
[2] => ,
)
)
关于PHP中的正则表达式处理函数是什么就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。
亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。