Preg_match_all lt;a href(Preg_match_all a href)
问题描述
你好,我想提取链接<a href="/portal/clients/show/entityId/2121" >
我想要一个正则表达式,它给我/portal/clients/show/entityId/2121最后2121的数字在其他链接中不同有什么想法吗?
Hello i want to extract links
<a href="/portal/clients/show/entityId/2121" >
and i want a regex which givs me /portal/clients/show/entityId/2121
the number at last 2121 is in other links different
any idea?
推荐答案
解析链接的正则表达式是这样的:
Regex for parsing links is something like this:
'/<as+(?:[^"'>]+|"[^"]*"|'[^']*')*href=("[^"]+"|'[^']+'|[^<>s]+)/i'
鉴于这有多可怕,我建议至少使用 Simple HTML Dom 来获取链接.然后,您可以在链接 href 上使用一些非常基本的正则表达式来检查链接.
Given how horrible that is, I would recommend using Simple HTML Dom for getting the links at least. You could then check links using some very basic regex on the link href.
这篇关于Preg_match_all <a href的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Preg_match_all <a href
基础教程推荐
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- HTTP 与 FTP 上传 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 使用 PDO 转义列名 2021-01-01