TheSorceror
Programmer
I am looking for a piece of code to help me seperate a comma delimited string into a dynamic array.
For example:
inputting a string of comma delimeted characters into a edit box on a form then seperate the string into the sepperated characters.
text entered equals "abcd,gfskfs,asdfwe,llooll,foasld"
this would then need to be entered into a dynamic array of type string as seperate strings.
ie
abcd
gfskfs
asdfwe
llooll
foasld
Problem the delimited text string can be of an unknown length so the string array would need to be redimmed.
How do i seperate the delimited string into seperate strings???
This can be done using the string class in VB but does Extra support the string class?
For example:
inputting a string of comma delimeted characters into a edit box on a form then seperate the string into the sepperated characters.
text entered equals "abcd,gfskfs,asdfwe,llooll,foasld"
this would then need to be entered into a dynamic array of type string as seperate strings.
ie
abcd
gfskfs
asdfwe
llooll
foasld
Problem the delimited text string can be of an unknown length so the string array would need to be redimmed.
How do i seperate the delimited string into seperate strings???
This can be done using the string class in VB but does Extra support the string class?