0

I've Scenario where user type a string in search box. If the entered string reaches more than one word, i explode it by using,

$text = "Hello World";
$pieces = explode(' ', $text);

and i will get the first and second term by

$pieces['0'] & $pieces['1'].

But, if an user type something like,

$text = "Hello                    World";

how should i get the second term?

If i var_dump the results, i'm getting

array(12) {
  [0]=>
  string(5) "Hello"
  [1]=>
  string(0) ""
  [2]=>
  string(0) ""
  [3]=>
  string(0) ""
  [4]=>
  string(0) ""
  [5]=>
  string(0) ""
  [6]=>
  string(0) ""
  [7]=>
  string(0) ""
  [8]=>
  string(0) ""
  [9]=>
  string(0) ""
  [10]=>
  string(0) ""
  [11]=>
  string(5) "World"
}
Rizier123
  • 58,877
  • 16
  • 101
  • 156
user3289108
  • 770
  • 5
  • 10
  • 29
  • 1
    possible duplicate of [Remove excess whitespace from within a string](http://stackoverflow.com/questions/1703320/remove-excess-whitespace-from-within-a-string) – Epodax Jul 23 '15 at 09:28

4 Answers4

6

Instead of explode() use preg_split() and then use \s+ (\s space, + 1 or more times) as delimiter. Like this:

$pieces = preg_split("/\s+/", $text);
Rizier123
  • 58,877
  • 16
  • 101
  • 156
1

Rizier123's answer is valid enough, but if you want to avoid using preg_split which uses regular expression checking, you could get your array with the empty strings and just remove all empty elements from it like so:

$text = "Hello      World";
$pieces = array_filter(explode(' ', $text));
mavili
  • 3,385
  • 4
  • 30
  • 46
0

replace multiple spaces with single space by using this

$output = preg_replace('!\s+!', ' ', $text);

then split the text

$pieces = explode(' ', $output);
Vishnu
  • 11,614
  • 6
  • 51
  • 90
0

Try:

<?php
$text = "Hello World";

// BONUS: remove whitespace from beginning and end of string

$text = trim($text);

// replace all whitespace with single space

$text = preg_replace('!\s+!', ' ', $text);
$pieces = explode(' ', $text);
?>
EM-Creations
  • 4,195
  • 4
  • 40
  • 56
Ian Thompson
  • 187
  • 1
  • 10