最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
php正则匹配a标签的例子
时间:2022-06-25 02:41:34 编辑:袖梨 来源:一聚教程网
方法一
代码如下 | 复制代码 |
$a ='百度谷哥谷歌雅虎'; 得出结果 Array ( [0] => Array ( [0] => 百度 [1] => 谷歌 [2] => 雅虎 )
) |
方法二
示例如下:
代码如下 | 复制代码 |
$str1 = 'test'; $str2 = 'test'; $str3 = 'test'; $regex = '/hrefs*=s*(?:"([^"]*)"|'([^']*)'|([^"'>s]+))/'; preg_match($regex, $str1, $matches); print_r($matches); preg_match($regex, $str2, $matches); print_r($matches); preg_match($regex, $str3, $matches); print_r($matches); 匹配结果: Array ( [0] => href=http://www.111com.net [1] => [2] => [3] => http://www.111com.net ) Array ( [0] => href='http://www.111com.net' [1] => [2] => http://www.111com.net ) Array ( [0] => href = "javasccript: href ('test');" [1] => javasccript: href ('test'); ) |
/hrefs*=s*(?:"([^"]*)"|'([^']*)'|([^"'>s]+))/
思路很巧妙,即:
分两步,先区配a标签,然后再区配a标签里面的链接
相关文章
- 燕云十六声金妙音石归鸿速刷攻略 07-01
- 崩坏星穹铁道3.2末日幻影打法技巧指南 07-01
- 怪物猎人荒野特产采集路线分享 07-01
- ps给人物制作添加影子效果教程 07-01
- 金铲铲之战s14超频源计划纳亚菲利阵容搭配推荐 07-01
- Pi2Day之后暴跌,用户怒斥“割韭菜”? 07-01