C
Charlie
I have a string (strSentence) that my code has copied off the Word document
and I know that it’s setup with this format:
John & Jane Doe <tab>Jim, Anne <tab> 1,2,3
The first part of the sentence is a name, either first & last or first,
wife, and last.
Then a tab
Then a sequence of one to four names separated by “,â€
Then a tab
The a sequence of a few numbers separated by “,â€
How can I programmatically break this down into the following 3 strings:
Name (everything before the first tab)
Children (everything between the tabs)
Number (everything after the second tab)
Thanks,
Ck
and I know that it’s setup with this format:
John & Jane Doe <tab>Jim, Anne <tab> 1,2,3
The first part of the sentence is a name, either first & last or first,
wife, and last.
Then a tab
Then a sequence of one to four names separated by “,â€
Then a tab
The a sequence of a few numbers separated by “,â€
How can I programmatically break this down into the following 3 strings:
Name (everything before the first tab)
Children (everything between the tabs)
Number (everything after the second tab)
Thanks,
Ck