如何去掉字符串首尾部一个或多个换行符<br/>
时间:2021-07-01 10:21:17
帮助过:3人阅读
怎么去掉字符串首尾部一个或多个换行符
怎么去掉字符串尾部一个或多个换行符
$str=“
文字
";
$str=preg_replace("/^[
]+|[
]+$/","",$str);
怎么写才正确?
------解决方案--------------------$str = str_replace('
','',$str);
------解决方案--------------------PHP code
文
字
HTML;
echo preg_replace('/(^(
\s*)+)|((
\s*)+$)/is','',$str);