1、php 正则去掉<p> </p> 空格
1
2
3
4
5
6
7
8
9
10
11
12
|
$str =' <p> </p> <p> </p> <p> </p> <p> </p> <p><strong><span style= "font-size: 18px;" >Factory Supply High Quality Maitake Mushroom Extract Powder Bulk</span></strong></p> <p> </p> <p> </p>Product Name <p> </p>'; $uuu =preg_replace( "/(s| | | )/" , "" , $str ); echo str_replace ( '<p></p>' , '' , $uuu ); |
2、php的str_replace函数怎么把<p><br/></p>替换掉呢?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
$html = "<p>fdasf</p>" ; echo $string = str_replace ( array ( "<p>" , "" , "</p>" ), "" , $html ); br<http: //bbs.houdunwang.com/> 若是<p> 内容</p>替换成<p>内容</p><p> content</p>替换成<p>contend</p>(空格是tab键和空格键 混合的 都有可能)方法如下 $html =preg_replace( '/[ ]/' , '' , $html ); //去空格 若是<p>后面跟了若干个,再是内容 <p> 内容</p> 替换成<p>内容</p> <p> content</p> 替换成<p>contend</p> <?php $html ="<p> 内容</p>替换成<p>内容</p> <p>content</p>替换成<p>contend</p>";方法如下 $html =trim( $html ); $html = str_replace (PHP_EOL, "" , $html ); $html = str_replace ( " " , "" , $html ); $html =preg_replace( '/s+/' , '' , $html ); $html =preg_replace( '/[ ]/' , '' , $html ); echo "{$html}" ; ?> str_replace ( "<p><br/></p>" , "" , $htmlstr ); |
3、正则表达式 替换或去掉字符串中的 <p></p>标签
如 : 张三<p>aaaa</p>历史<p>bbbb</p>
如果要替换掉<p>aaaa</p>,包括内容,就把<p>[^<]*?</p>替换为空
如果要替换掉<p></p>,不包括中间的内容,就把<p>([^<]*?)</p>替换为$1
4、js 去掉<p>与</p>标签的正则
1
2
3
|
var s= '<p class="jb51">服务器之家</p>' ; s=s.replace(/</?p[^>]*>/gi, '' ) alert(s) |
5、看到这里服务器之家小编特为大家分享一个替换正则,空字符基本上全部包括
str=str.replace(/<p>(s| | | | )*</p>/ig, "");
对于
<p> </p>、
p>
</p>
都可以匹配
到此这篇关于php 正则去掉空格 文章就介绍到这了,更多相关php 正则去掉空格内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!