Hello,
Can anyone help me find an easy way to do this:
Split a string at "-", "_", ":" and " " (space) and place the result in an array?
Example:
"hello there:whats-up_dude"
$array[0] = "hello";
$array[0] = "there";
$array[0] = "whats";
$array[0] = "up";
$array[0] = "dude";
My script got way too long 😉
Thx.