当前位置:Gxlcms > PHP教程 > 新手又有正则有关问题需要请问

新手又有正则有关问题需要请问

时间:2021-07-01 10:21:17 帮助过:18人阅读

新手又有正则问题需要请教!
新手,在打书上的文章发布工具时,用正则匹配URL出了点问题。

$pattern = '/(http\:\/\/|https\:\/\/)?([a-zA-Z0-9-]+\.)+(com|cn|org|net)(\/[\w\%\&\=\'\"\?\/\.]*)?/';
$string = 'http://demo.demo.baidu.com';
preg_match_all($pattern,$string,$result);

遍历$result的结果是
[code=php]
Array
(
[0] => Array
(
[0] => http://demo.demo.baidu.com
)
[1] => Array
(
[0] => http://
)

[2] => Array
(
[0] => baidu.
)
[3] => Array
(
[0] => com
)
[4] => Array
(
[0] =>
)
)
[/php]
第二个子表达式其实是匹配了’www.‘以及’baidu.‘,有两次匹配,但是返回的结果里只有一处匹配T.T
整个表达式是能够匹配整个URL的,但是我要用到第二个子表达式的两次匹配结果,现在只有一个,望各位指教问题出现在哪儿!
感谢!
------解决方案--------------------
(http\:\/\/
------解决方案--------------------
https\:\/\/)?(([a-zA-Z0-9-]+\.)+)+(com
------解决方案--------------------
cn
------解决方案--------------------
org
------解决方案--------------------
net)(\/[\w\%\&\=\'\"\?\/\.]*)?

------解决方案--------------------
$pattern = '/(http\:\/\/
------解决方案--------------------
https\:\/\/)?((?:[a-zA-Z0-9-]+\.)+)(com
------解决方案--------------------
cn
------解决方案--------------------
org
------解决方案--------------------
net)(\/[\w%&=\'"?\/.]*)?/';
$string = 'http://demo.demo.baidu.com';
preg_match_all($pattern,$string,$result);
Array
(
[0] => Array
(
[0] => http://demo.demo.baidu.com
)

[1] => Array
(
[0] => http://
)

[2] => Array
(
[0] => demo.demo.baidu.
)

[3] => Array
(
[0] => com
)

[4] => Array
(
[0] =>
)

)

人气教程排行