Visit SearchWinDevelopment.com, the Visual Basic-Specific Search Engine.
               FREE benefits include Daily News, Developer Tips, Career Center, VB Forums & more.


Home Recent Code Popular Code SearchWinDevelopment.com White Papers

Jobs

Submit Code Email


Author:  Dominick Beckham
Date Submitted:  4/30/2006
Category:  String Handling/Manipulation
Compatibility:  VB 6,VB 5,VB 4/32,VB 4/16,VB 3
This code has been accessed 4809 times.

Email Yourself this snippet:

Task: This code will break a string into parts based on a specific delimiter. Includes four functions. The first, which is not my code, is FindRepl for finding and replacing a specific pattern in a string with another pattern. The second function is GetLimit which essentially gets the amount of delimiters in a string. The third function is ParseWrd which parses a 'word,' that is the string between the delimiters, out of a string. The fourth sub-routine is RetrBits which essentially yields all the relevant data based on the string parsing process to another function.
Declarations

Code