Let's say there is data with one delimiter vbCrlf :
it's easy to split this data using code like this:
But, how i can I split the data that has two delimiters: vbCrlf & Space? Something like this:
This example contans "space" and "new line", how can I split them?
Thanks
Code:
Jack
Jhon
James
George
Code:
entry= Split(data, , vbCrLf, vbBinaryCompare)
Code:
010203 Jack
909090 Jhon
304050 James
506070 George
Thanks