gpt4 book ai didi

regex - Bash/PHP 通过正则表达式从 HTML 中提取 URL

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:48:48 25 4
gpt4 key购买 nike

有什么简单的方法可以在 bash/或 PHP 中提取此 URL?

http://shop.image-site.com/images/2/format2013/fullies/kju_product.png

从这个 HTML 代码?

<a href="javascript: open_window_zoom('http://shop.image-site.com/image.php?image=http://shop.image-site.com/images/2/format2013/fullies/kju_product.png&pID=31777&download=kju.png&name=13011 KELLYS Kju: 490mm (19.5&quot;)',550,366);">

最佳答案

用 perl 你可以做一个匹配和一个捕获

perl -n -e 'print "$1\n" if (m/image=(.*?)\&/);'

这会捕获 image= 和下一个 & 之间的所有内容并打印它 $1

有关正则表达式的更多信息,请参阅 perlrehttp://www.regular-expressions.info/

关于regex - Bash/PHP 通过正则表达式从 HTML 中提取 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15123995/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com