PHP preg_plit去掉了一行中的尾随空格吗?

2022-03-22 00:00:00 regex php preg-replace preg-split

如何消除preg_split结果中的尾随空格,而不使用preg_replace首先删除$test字符串中的所有空格?

$test   = 'One , Two,   Thee   ';
$test   = preg_replace('/s+/', ' ', $test);
$pieces = preg_split("/[,]/", $test);

解决方案

如果必须是preg_split()(您实际上在问题中需要),则这可能会有所帮助:

$test   = 'One , Two,   Thee   ';
$pieces = preg_split("/s*,s*/", trim($test), -1, PREG_SPLIT_NO_EMPTY);

trim()用于删除第一个元素之前和最后一个元素后面的空格。(preg_split()不起作用-它只删除逗号周围的空格)

相关文章