Is there any way I can designate a string delimiter as being any character from an array? For example:
$delimiter = range("a","z");
$str = "103a765g678d6f76h";
$newstr = $explode($delimiter, $str);
Resulting in $newstr
being [103,765,678,6,76]
I couldn't find anything on google on how to do this nor could I think of anything myself