What do you mean? Do you want to split the string on "09", leaving you with an array with 5 and 7, or do you want to extract "09" from the string?
In either case, if you want to successfully parse any type of string, there needs to be a pattern; some rules that govern how the string is to be split. (A specific char to split on, a range, specific indexes, etc...)
Tell us those rules so we know what we are dealing with.
Comment