preg_match url 模式
由于我找不到问题的确切答案,我决定在这里寻求帮助,发布我的问题。因此,我有一个通过 file_get_contents
获取的页面内容,并希望 preg_match
此网址:
http://sample.com/Last/LastSearch.ashx?q=cnt=1&day=5&keyword=sample&location=15&view=v
来自
<a href="javascript:LastURL('http://sample.com/Last/LastSearch.ashx?q=cnt=1&day=5&keyword=sample&location=15&view=v');" id="Last" rel="nofollow" class="Last" onclick="javascript:hideCss('LastCSS');hideCss('FirstRCSS');">Last</a>
请帮助我。
as I cant find exact answer to my question I decided to ask for help posting my question here. So, I have a page content which I get with file_get_contents
and want to preg_match
this url:
http://sample.com/Last/LastSearch.ashx?q=cnt=1&day=5&keyword=sample&location=15&view=v
from
<a href="javascript:LastURL('http://sample.com/Last/LastSearch.ashx?q=cnt=1&day=5&keyword=sample&location=15&view=v');" id="Last" rel="nofollow" class="Last" onclick="javascript:hideCss('LastCSS');hideCss('FirstRCSS');">Last</a>
Please help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为什么不使用 DOM?这就是它的用途...
如果您坚持使用正则表达式,请尝试(在 PHP 中)
或(在 JavaScript 中)
Why not use the DOM? That's what it's for...
If you insist on a regex, try (in PHP)
or (in JavaScript)
只要 url 始终以 http:// 开头,那么您就可以在 preg_match 中使用以下表达式:
As long as the url is always going to start with http:// then you could use the following expression within your preg_match: