Parse a delimited string into an array
This code with scan through a string looking for a delimiter of your choice, and will put the text inbetween the delimiters into seperate elements of an array. Original Author: Warren Daniel Code Option ExplicitDim Parsed() As StringDim DelimitChr As StringDim DelimitNum As IntegerPrivate Sub Form_Load()Dim X As IntegerDelimitChr = Chr(1)Dim ExampleString As StringExampleString = “1” & DelimitChr &… Read More »