PHP regexp:替换文本字符串中的一段 URL

发布于 2024-10-04 07:49:30 字数 660 浏览 2 评论 0原文

请帮助理解 php 正则表达式。有这个字符串:

<a href="/kop/product/acer-timeline-5810tg-944g50mi" class="imagecache imagecache-product_list imagecache-linked imagecache-product_list_linked"><img src="http://localhost/kop/sites/default/files/imagecache/product_list/Acer-Timeline-1.jpg" alt="Acer As Timeline 5810TG-944G50Mi" title="Acer As Timeline 5810TG-944G50Mi" class="imagecache imagecache-product_list" width="100" height="100" /></a>

我需要替换中位于imagecache//SOME_TEXT之间的product_list标签,例如 product_list_replaced

如有任何帮助,

谢谢

Please help with understanding php regular expressions. Have this string:

<a href="/kop/product/acer-timeline-5810tg-944g50mi" class="imagecache imagecache-product_list imagecache-linked imagecache-product_list_linked"><img src="http://localhost/kop/sites/default/files/imagecache/product_list/Acer-Timeline-1.jpg" alt="Acer As Timeline 5810TG-944G50Mi" title="Acer As Timeline 5810TG-944G50Mi" class="imagecache imagecache-product_list" width="100" height="100" /></a>

I need to replace product_list that situated between imagecache/ and /SOME_TEXT within <img> tag, with, for example product_list_replaced

Any help appreciated

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清风疏影 2024-10-11 07:49:30

如果您只是需要这样做,那么使用 str_replace(),您可以这样做:

$text = '<a href="/kop/product/acer-timeline-5810tg-944g50mi" class="imagecache imagecache-product_list imagecache-linked imagecache-product_list_linked"><img src="http://localhost/kop/sites/default/files/imagecache/product_list/Acer-Timeline-1.jpg" alt="Acer As Timeline 5810TG-944G50Mi" title="Acer As Timeline 5810TG-944G50Mi" class="imagecache imagecache-product_list" width="100" height="100" /></a>';

$new = '<img>product_list_replaced</img>';
$match = 'imagecache/';

$newstr= str_replace($match, $replace, $text);

如果您对正则表达式感兴趣,请查看此站点< /a>

哈!

If you just need to do that is easier to use str_replace(), you can do it this way:

$text = '<a href="/kop/product/acer-timeline-5810tg-944g50mi" class="imagecache imagecache-product_list imagecache-linked imagecache-product_list_linked"><img src="http://localhost/kop/sites/default/files/imagecache/product_list/Acer-Timeline-1.jpg" alt="Acer As Timeline 5810TG-944G50Mi" title="Acer As Timeline 5810TG-944G50Mi" class="imagecache imagecache-product_list" width="100" height="100" /></a>';

$new = '<img>product_list_replaced</img>';
$match = 'imagecache/';

$newstr= str_replace($match, $replace, $text);

If you are interested in regular expresions take a look of this site

HTH!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文