如何获取所有以http://plus开头的链接
我有一个带有以下搜索的预匹配:
$regexp = "<a\s[^>]*href=(\"??)([^\" >]*?)\\1[^>]*>(.*)<\/a>";
现在我如何重新格式化它以查找类似的内容:
href="http://plus
我不希望更改整个内容,只更改 href 的部分。
谢谢
I have a pregmatch with the following search :
$regexp = "<a\s[^>]*href=(\"??)([^\" >]*?)\\1[^>]*>(.*)<\/a>";
now how can I reformat this to look for something like :
href="http://plus
I dont want the entire thing to be changed , just that part for the href.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
$regexp = "]*href=(\"??)(http:\/\/plus[^\" >]*?)\\1[^> ;]*>(.*)<\/a>";
$regexp = "<a\s[^>]*href=(\"??)(http:\/\/plus[^\" >]*?)\\1[^>]*>(.*)<\/a>";