gpt4 book ai didi

php - 如何检测PHP中的空白空间?

转载 作者:搜寻专家 更新时间:2023-10-31 21:18:17 24 4
gpt4 key购买 nike

如何检测字符串中因输入多个空格键而导致的所有空格。

换句话说,我不想检测到这一点:

" "

但比这更重要的是。例如:

"  ", "   ", etc...

最佳答案

您可以使用正则表达式:

$regex = '~\s{2,}~';
preg_match($regex, $str);

\s 包括空格、制表符和换行符。如果您想要只是 空格,您可以将$regex 更改为:

$regex = '~ {2,}~';

如果你想从字符串中删除多余的空格,你可以使用:

$str = 'hello  there,   world!';

$regex = '~ {2,}~';
$str = preg_replace($regex, ' ', $str);

echo $str;

输出:

hello there, world!

关于php - 如何检测PHP中的空白空间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3589167/

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