PHP preg_splitÂ[0-9]Â

时间:2011-07-18 09:28:16

标签: php preg-split

您需要根据此“动态”分隔符将字符串拆分为数组:

String   1  String2

String2   65  String3

 它的变量之间的数字......字符串也可以包含 ,所以str_replace或者爆炸它对我来说是无用的(对我而言)

1 个答案:

答案 0 :(得分:0)

$str = "String   1   ";
$result = preg_split('/   [\d]+  /', $str);
print_r($result);

Array
(
    [0] => String
    [1] =>  
)

说明:

# Match the characters “   ” literally «   »
# Match a single digit 0..9 «[\d]+»
#    Between one and unlimited times, as many times as possible, giving back as needed (greedy) «+»
# Match the characters “  ” literally «Â  »