Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Parsing fields with delimiters

Status
Not open for further replies.

tomed

Programmer
Apr 1, 2002
64
US
I have a couple memo fields that store a huge amount of data that I need to parse. The data is seperated by ~. Access help tells me nothing about parsing aside from Left, Right, Mid. Any way of doing this would be greatly appreciated.
 
You could use the inStr function to find position of the ~, then use Mid with that position to read those characters into a new string.

A reference for inStr can be found on MSDN at
If you are comfortable with Mid, left, Right, etc, then inStr should be pretty clear for you. Let me know if you have any questions.

Jay
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top