我在编写正则表达式方面不是那么好,所以我寻求帮助。
我有我的页面的 html 字符串。我想将 html 字符串转换为 Google AMP 兼容页面。我想在其中替换一些自定义 html 标签。
<define:dos> This string explains DOS.</define:dos>
并且输出应该只有This string explains DOS.
我的 html 字符串中有几个字符串,从我尝试通过为每个按预期工作的标签<define:
单独编写来删除它们:preg_replace
$html = preg_replace('#<define:wlan>#i', '', $html);
$html = preg_replace('#<define:wifi>#i', '', $html);
$html = preg_replace('#<define:dos>#i', '', $html);
等等
我尝试了以下方法但没有奏效:(
$html = preg_replace('#\<define[^\]>*\](.*?)\</define\>#m', "$1", $html);
我想要通用的解决方案。请帮忙。
先感谢您。