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

发布于 2024-11-25 11:25:39 字数 306 浏览 1 评论 0原文

我想删除所有不在两个字母之间的空格

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

这个想法是我想删除所有不必要的空格(不仅在开头和结尾)。这不是一个链接,而是一个搜索框,提交时会分解,所以 + 甚至可以是 = 或任何基本上

I want to strip all spaces that are not between two letters:

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

The idea is that i want to get rid of all unnecessary spaces(not only at the beginning and end). This is not for a link but for a search box that on submit will be exploded so the + can even be a = or anything basically

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

海夕 2024-12-02 11:25:39
$string = preg_replace('/\s+/', ' ', $string);
$string = preg_replace('/\s+/', ' ', $string);
温柔少女心 2024-12-02 11:25:39

如果您的最终目标是分解搜索字符串(即分解为一组术语),我建议使用 preg_split()

$search_terms = preg_split('/\s+/', $search_string);
print_r($search_terms);

If your ultimate goal is to explode a search string (i.e. into an array of terms) I suggest condensing all steps into one using preg_split()

$search_terms = preg_split('/\s+/', $search_string);
print_r($search_terms);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文