E
Ed
I have collected items and set them into a long string stored in a document,
with each item set off inside "<" and ">". So a final string might look
like <item 1><item 2><item 3>.
I know how to use InStr(string) to find the first ">". I was going to use
Mid to get the string from 2 (since I don't want the first "<") to InStr -
1, but Mid Help says it doesn't get the string - it replaces it. That's
fine - I will want to replace it with noting to delete it. But I need to
get it out of the long string first.
What do I use in between InStr and Mid? Or is there a better way?
Ed
with each item set off inside "<" and ">". So a final string might look
like <item 1><item 2><item 3>.
I know how to use InStr(string) to find the first ">". I was going to use
Mid to get the string from 2 (since I don't want the first "<") to InStr -
1, but Mid Help says it doesn't get the string - it replaces it. That's
fine - I will want to replace it with noting to delete it. But I need to
get it out of the long string first.
What do I use in between InStr and Mid? Or is there a better way?
Ed