gpt4 book ai didi

php - 去除 php 字符串中所有不必要的空格

转载 作者:可可西里 更新时间:2023-11-01 00:06:49 25 4
gpt4 key购买 nike

我想去掉所有不在两个字母之间的空格:

$string = "              bah    bah    bah bah  ";
$string = str_replace("/w /w", "+", $string);
// what goes here? to get this:
$string = "bah+bah+bah+bah";

我的想法是我想去掉所有不必要的空格(不仅是开头和结尾)。这不是用于链接,而是用于提交时会展开的搜索框,因此 + 甚至可以是 = 或任何基本内容

最佳答案

$string = preg_replace('/\s+/', ' ', $string);

关于php - 去除 php 字符串中所有不必要的空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6769638/

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