本文介绍了PHP Preg表达式从字符串中删除html标签和内容?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
快速问题。
我想从以下字符串中删除sup标签,以及其中的所有内容。
$ string =Priority Mail< sup>& reg;< / sup> International;
我该怎么做?
preg_replace((<([ AZ] +)>。* LT; / \\1>)的, ,$输入);
quick question.
I'd like to remove the sup tag from the following string, and all content within it.
$string = "Priority Mail<sup>®</sup> International";
How would I do that?
解决方案
I imagine something like this would work:
preg_replace("(<([a-z]+)>.*?</\\1>)is","",$input);
这篇关于PHP Preg表达式从字符串中删除html标签和内容?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
09-08 05:05