Convert clickable anchor tags to plain text in html document(将可点击的锚标签转换为 html 文档中的纯文本)
问题描述
我试图在我的内容中匹配 <a>
标签,并将它们替换为链接文本,后跟方括号中的 url 用于打印版本.
I am trying to match <a>
tags within my content and replace them with the link text followed by the url in square brackets for a print-version.
如果只有href",则以下示例有效.如果 <a>
包含另一个属性,则匹配太多并且不会返回所需的结果.
The following example works if there is only the "href". If the <a>
contains another attribute, it matches too much and doesn't return the desired result.
如何匹配 URL 和链接文本,仅此而已?
How can I match the URL and the link text and that's it?
这是我的代码:
<?php
$content = '<a href="http://www.website.com">This is a text link</a>';
$result = preg_replace('/<a href="(http://[A-Za-z0-9\.:/]{1,})">([\s\S]*?)</a>/',
'<strong>\2</strong> [\1]', $content);
echo $result;
?>
想要的结果:
<strong>This is a text link </strong> [http://www.website.com]
推荐答案
您可以使用 ?
使匹配变得不贪婪.您还应该考虑到 href
属性之前可能有一些属性.
You can make the match ungreedy using ?
.
You should also take into account there may be attributes before the href
attribute.
$result = preg_replace('/<a [^>]*?href="(http://[A-Za-z0-9\.:/]+?)">([\s\S]*?)</a>/',
'<strong>\2</strong> [\1]', $content);
这篇关于将可点击的锚标签转换为 html 文档中的纯文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将可点击的锚标签转换为 html 文档中的纯文本


- 带有通配符的 Laravel 验证器 2021-01-01
- 正确分离 PHP 中的逻辑/样式 2021-01-01
- SoapClient 设置自定义 HTTP Header 2021-01-01
- Laravel 仓库 2022-01-01
- 没有作曲家的 PSR4 自动加载 2022-01-01
- 从 PHP 中的输入表单获取日期 2022-01-01
- PHP Count 布尔数组中真值的数量 2021-01-01
- 如何定位 php.ini 文件 (xampp) 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- Mod使用GET变量将子域重写为PHP 2021-01-01