Home  >  Article  >  Backend Development  >  求个正则

求个正则

WBOY
WBOYOriginal
2016-06-23 13:58:07767browse

$str='

你好

';

请问怎么匹配出‘你好’?

p标签是变化的。

谢谢大家。谢谢。


回复讨论(解决方案)

$str='<p>你好</P>';echo strip_tags($str);

$str='

你好

';

请问怎么匹配出‘你好’?

p标签是变化的。

谢谢大家。谢谢。
我要的是正则,可以给个正则吗?

$str='<p>你好</P>';echo strip_tags($str);


我要的是正则,可以给个正则吗?

$str = '<p>你好</P>';preg_match('/>([^<]+)/', $str, $r);echo $r[1];

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn