I have a string: a74b8c0d3845e7… etc etc.
The basic pattern is a letter followed by a number.
I want to create an array that would result in:
Array (
[a] => 74
[b] => 8
[c] => 0
[d] => 3845
[e] => 7
)
I know it'll be a foreach loop (or a couple) but just can't seem to figure it out.