-
PHP正则表达式处理函数(PCRE 函数)实例小结
这篇文章主要介绍了PHP正则表达式处理函数(PCRE 函数),结合实例形式总结分析了php正则表达式preg_replace、preg_match、preg_match_all、preg_split及preg_quote等函数相关使用技巧,需要的朋友可以参考下。
本文实例讲述了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.phpfensi.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] => ,
- )
- )
出处:http://www.phpfensi.com/php/20211122/18750.html
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式