I have this string that I would like to split.I want it to split the string starting with 1060 and retain the string but when I use preg_split(), it removes the string.
my code is this:
$array = preg_split("/1060[\s]*/",$str);
if there is any other method or function i can use, i will be very grateful.
Regards,