Let's say there is data with one delimiter vbCrlf :

Code:
Jack
Jhon
James
George
it's easy to split this data using code like this:

Code:
entry= Split(data, , vbCrLf, vbBinaryCompare)
But, how i can I split the data that has two delimiters: vbCrlf & Space? Something like this:

Code:
010203 Jack
909090 Jhon
304050 James
506070 George
This example contans "space" and "new line", how can I split them?

Thanks