我有一个html源代码,想要用其包含的href链接替换所有 <a>
标记。
所以标签看起来像:
<a href="http://google.com" target="_blank">click here</a>
我期待作为输出:
http://google.com
我已经尝试将一些正则表达式与preg_replace结合使用, 但他们都没有给我href的内容。
那么最好的方法是什么?
答案 0 :(得分:1)
与正则表达式<a .*href="([^"]*)".*?<\/a>
匹配,并使用\1
或$1
替换为第一组。
<强> Regex101 Demo 强>
答案 1 :(得分:0)
<?php
$text = '
Random text <a href="foobar.html">Foobar</a> More Text
Other text <a href="http://www.example.com">An example</a>
Still more text <a href="http://www.example.com/foo/bar.html">A deep link</a>. The end.
';
preg_match_all('/<a href="(.*?)"/i',$text,$matches);
foreach ($matches[1] as $match) {
print "A link: $match\n";
}
结果:
A link: foobar.html
A link: http://www.example.com
A link: http://www.example.com/foo/bar.html