正则表达式搜索+替换href =“URL”

时间:2011-03-05 17:59:45

标签: php regex wordpress

我对正则表达式毫无用处,并且无法自己谷歌一个明确的解决方案。

我想用一个新的url(存储为变量$ newurl)为锚点href中的任何url搜索+替换一些文本($ content)。

改变这个:

<a href="http://blogurl.com/files/foobar.jpg"><img alt="foobar" src="http://blogurl.com/files/2011/03/foobar_thumb.jpg" /></a>

对此:

<a href="http://newurl.com/here/"><img alt="foobar" src="http://blogurl.com/files/2011/03/foobar_thumb.jpg" /></a>

我想使用preg_replace最适合这个。类似的东西:

preg_replace('Look for href="any-url"', 
'href="$newurl"',$content);

这个想法是让WordPress首页上的所有图像链接到他们的帖子而不是全尺寸图像(这是他们默认的方式)。通常只有一个网址可以替换,但我不认为替换所有可能的匹配会有害。

希望所有这些都有意义并提前感谢!

2 个答案:

答案 0 :(得分:7)

这是我提出的要点。希望它可以帮助某人:

$content = get_the_content();
$pattern = "/(?<=href=(\"|'))[^\"']+(?=(\"|'))/";
$newurl = get_permalink();
$content = preg_replace($pattern,$newurl,$content);

echo $content;

Mucho thanko到@WiseGuyEh

答案 1 :(得分:5)

这应该可以做到 - 你可以测试它here

(?<=href=("|'))[^"']+(?=("|'))

它使用lookahead and lookbehind断言它匹配的任何内容都以 href =“ href ='开头,并确保以一个或两个结尾报价。

注意:正则表达式无法确定这是否是一个有效的html文档 - 如果混合使用单引号和双引号用于包含href值,它将忽略此错误!