Can strings be parsed into an array based on multiple delimiters? as explained in the code:
$str ="a,b c,d;e f";
//What i want is to convert this string into array
//using the delimiters space, comma, semicolon
$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"
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With