本文实例讲述了PHP正则表达式处理函数。分享给大家供大家参考,具体如下:
有时候在一些特定的业务场景中需要匹配,或者提取一些关键的信息,例如匹配网页中的一些链接,
提取一些数据时,可能会用到正则匹配。
下面介绍一下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