Extracting Data From A Tab Delimited String
Posted: Thu Nov 06, 2008 9:36 pm
I have a string that is separated by tabs. Is there any way to extract the data between tabs? I can't use the word command as there are spaces in my data.
example:
tHilitedText Contains...
name <tab> address 1 <tab> address 2
When I try the following, it only selects data up until a space is reached. I want to select until the tab is reached.
put word 1 of tHilitedText into tName
put word 2 of tHilitedText into tAddress1
put word 3 of tHilitedText into tAddress2
Thanks!
Warren
example:
tHilitedText Contains...
name <tab> address 1 <tab> address 2
When I try the following, it only selects data up until a space is reached. I want to select until the tab is reached.
put word 1 of tHilitedText into tName
put word 2 of tHilitedText into tAddress1
put word 3 of tHilitedText into tAddress2
Thanks!
Warren