gpt4 book ai didi

php - 删除多余的空格但不删除两个单词之间的空格

转载 作者:IT王子 更新时间:2023-10-29 00:08:37 27 4
gpt4 key购买 nike

我想删除字符串中的多余空格。我已经尝试过 trimltrimrtrim 和其他但它们都不起作用,甚至尝试了以下内容。

//This removes all the spaces even the space between the words 
// which i want to be kept
$new_string = preg_replace('/\s/u', '', $old_string);

有解决办法吗?

更新:-

输入字符串:-

"
Hello Welcome
to India "

输出字符串:-

"Hello Welcome to India"

最佳答案

$cleanStr = trim(preg_replace('/\s\s+/', ' ', str_replace("\n", " ", $str)));

关于php - 删除多余的空格但不删除两个单词之间的空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24570744/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com