Answers:
$parts = preg_split('/\s+/', $str);
$parts = preg_split('/\s+/', $str, -1, PREG_SPLIT_NO_EMPTY);
我想你要preg_split
:
$input = "A B C D";
$words = preg_split('/\s+/', $input);
var_dump($words);
为了考虑全宽空间如
full width
您可以扩展Bens的答案:
$searchValues = preg_split("@[\s+ ]@u", $searchString);
资料来源:
(我没有足够的声誉来发表评论,所以我将其写为答案。)
其他人(本·詹姆斯)(Ben James)提供的答案非常好,我已经使用了它们。正如user889030指出的那样,最后一个数组元素可能为空。实际上,第一个和最后一个数组元素可以为空。下面的代码解决了这两个问题。
# Split an input string into an array of substrings using any set
# whitespace characters
function explode_whitespace($str) {
# Split the input string into an array
$parts = preg_split('/\s+/', $str);
# Get the size of the array of substrings
$sizeParts = sizeof($parts);
# Check if the last element of the array is a zero-length string
if ($sizeParts > 0) {
$lastPart = $parts[$sizeParts-1];
if ($lastPart == '') {
array_pop($parts);
$sizeParts--;
}
# Check if the first element of the array is a zero-length string
if ($sizeParts > 0) {
$firstPart = $parts[0];
if ($firstPart == '')
array_shift($parts);
}
}
return $parts;
}
Explode string by one or more spaces or tabs in php example as follow:
<?php
$str = "test1 test2 test3 test4";
$result = preg_split('/[\s]+/', $str);
var_dump($result);
?>
/** To seperate by spaces alone: **/
<?php
$string = "p q r s t";
$res = preg_split('/ +/', $string);
var_dump($res);
?>
@OP没关系,您可以通过爆炸在一个空间上拆分。在要使用这些值之前,请遍历爆炸值并丢弃空白。
$str = "A B C D";
$s = explode(" ",$str);
foreach ($s as $a=>$b){
if ( trim($b) ) {
print "using $b\n";
}
}