假如有如下字符串文字,我们需要去除中间的空格。我们可以使用trim函数先把收尾空格去除,在通过preg_replace函数把空格去除,再通过str_replace函数把空格替换。
$prompt = “简忆博客 2023”; $str = trim($prompt); $str = preg_replace('# #','',$str); $str = str_replace(' ', '', $str);
假如有如下字符串文字,我们需要去除中间的空格。我们可以使用trim函数先把收尾空格去除,在通过preg_replace函数把空格去除,再通过str_replace函数把空格替换。
$prompt = “简忆博客 2023”; $str = trim($prompt); $str = preg_replace('# #','',$str); $str = str_replace(' ', '', $str);
扫码关注‘简忆博客’微信公众号,获取最新文章动态
转载:请说明文章出处“来源简忆博客”。http://www.tpxhm.com/adetail/961.html
简忆博客
勤于学习,乐于分享
文章评论(0)