gpt4 book ai didi

PHP 正则表达式 HTML - 提取 URL

转载 作者:太空宇宙 更新时间:2023-11-04 13:35:23 29 4
gpt4 key购买 nike

我正在尝试使用正则表达式从 HTML 文件中提取多个 URL。文件中还有其他 URL,我唯一的模式是“tableentries”。和“”

HTML 代码示例:

<tr class="tableentries2">
<td>
<a href="http://example.com/all-files/files/00000000789/">Click Here</a>
</td>

我写的 PHP:

$html = "value of the code above"
if(preg_match_all('/<td>.*</td>/', $html, $match)){
foreach($match[0] as $x){

echo $x . "<br>";

}}

最佳答案

为什么不只查找 href 值? (更新是因为编辑后的代码现在带有引号。)

preg_match_all('/href="([^\s"]+)/', $html, $match);

那么 URI 将在 $match[1][0] 中。

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

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