I'm using preg_split
to split a value. I need to store each value of the split into an array.
currently what is being passed in to the preg split is:
preg_split("/[0-9]/", fujitsu30001 , NULL , PREG_SPLIT_OFFSET_CAPTURE);
I need it to split on each number so it appears as:
[fujitsu, 3, 0, 0, 0, 1]
in an array, any help would be great on this matter.
Would it be better to use preg_match
?
Try this:
http://ideone.com/9H65fW