可以根据多个分隔符将字符串解析为数组吗?如代码中所述:
$str ="a,b c,d;e f";
//What i want is to convert this string into array
//using the delimiters space, comma, semicolon
Run Code Online (Sandbox Code Playgroud)
ale*_*lex 17
$str = "a,b c,d;e f";
$pieces = preg_split('/[, ;]/', $str);
var_dump($pieces);
Run Code Online (Sandbox Code Playgroud)
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"
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
8426 次 |
| 最近记录: |