I need to parse a string based on alpha and numeric parts. I need to split it into an array based on the parts. ie.
tommy009 would be an array with tommy and 009 009tommy would be 009 tommy 09tommy90 would be 09 tommy 90
How can I do that?
Read PHP manual on 'ereg' functions to use PERL regular expressions to leverage numeric and alpha matching