PHP中的多个分隔符拆分字符串

时间:2011-03-24 04:51:25

标签: php

可以根据多个分隔符将字符串解析为数组吗?如代码中所述:

$str ="a,b c,d;e f";
//What i want is to convert this string into array
//using the delimiters space, comma, semicolon

2 个答案:

答案 0 :(得分:16)

PHP

$str = "a,b c,d;e f";

$pieces = preg_split('/[, ;]/', $str);

var_dump($pieces);

CodePad

输出

array(6) {
  [0]=>
  string(1) "a"
  [1]=>
  string(1) "b"
  [2]=>
  string(1) "c"
  [3]=>
  string(1) "d"
  [4]=>
  string(1) "e"
  [5]=>
  string(1) "f"
}

答案 1 :(得分:0)