正则匹配有关问题 求指教
程序员文章站
2024-02-14 12:17:22
...
正则匹配问题 求指教
获取一个A标签的Href属性
被匹配的字符
获取一个A标签的Href属性
被匹配的字符
连接1
连接2
连接3
可以没有引号 可以有双引号 单引号 但是不允许一侧有引号另一侧没有引号
这样怎么不行呢
------解决方案--------------------
可以没有引号 可以有双引号 单引号 但是不允许一侧有引号另一侧没有引号
- PHP code
preg_match('//i', $str, $matches)
这样怎么不行呢
------解决方案--------------------
- PHP code
-
独孤九贱-php全栈开发教程
全栈 170W+
主讲:Peter-Zhu 轻松幽默、简短易学,非常适合PHP学习入门
-
玉女心经-web前端开发教程
入门 80W+
主讲:灭绝师太 由浅入深、明快简洁,非常适合前端学习入门
-
天龙八部-实战开发教程
实战 120W+
主讲:西门大官人 思路清晰、严谨规范,适合有一定web编程基础学习
- 最新文章
- 热门排行
$str=连接1连接2连接3连接3STR;preg_match_all('/]+href=(["\']?)([^\s"\']+)\1[^>]*>/',$str,$matches);print_r($matches[2]);
------解决方案--------------------PHP code
$str=连接1连接2连接3html;preg_match_all('/href=(["\'])?([^\s"\']+)/is', $str, $matches) ;print_r($matches);
------解决方案--------------------PHP code
[User:root Time:14:14:52 Path:/home/liangdong/php]$ php preg.php Array( [0] => Array ( [0] =>Array ( [0] => " [1] => ' [2] => ) [2] => Array ( [0] => http://www.baidu.com/ [1] => http://www.baidu.com/ [2] => http://www.baidu.com/ ))[User:root Time:14:14:53 Path:/home/liangdong/php]$ cat preg.php 连接1连接2连接3EOF;preg_match_all('/相关文章
相关视频
专题推荐
上一篇: php调用COM组件
网友评论
文明上网理性发言,请遵守 新闻评论服务协议
我要评论