of course, the above is only a starter.
inside the loop on the array items of arrdata, you will the split on [ and then on : characters ...
Main Topics
Browse All Topicsvisual basic 6 (sp6)
Below is the string example, length will vary: NO SPACES
<bob@bob.com[green:red:blu
It will always be structured like: <email address[&]> with NO SPACES.
I need to search between each set of <&> and grab the email address if the color is green
between [&].
Thanks,
Adawn
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Sorry,
Mine was .net
in vb6 it is a lot harder, you have to replace the .contains function with instr, string.empty with "" and arrdata(iCount).Split("["c
arrdata(iCount).Substring(
console.writeline becomes debug.print
I dont have a vb6 IDE so I cant test the code so there might be the odd typo in there
63 points only to the accepted solution?
I think an answer of "I used bots and pieces" is not acceptable as a response.If an alternative solution is found (or a variance on a suggested solution), authors are required under conditions set as a standard in EE to supply the answer (so other users can search and find possible solutions to THEIR problems).
I would request that the author reconsider the points allocated and also supply the "bits and pieces" solution.
I post this with no malice or discontent, only concern that an acceptable "closure" standard has not been found gere.
Business Accounts
Answer for Membership
by: angelIIIPosted on 2009-10-10 at 11:12:52ID: 25543159
you could use split function:
Select allOpen in new window