Pls try and add the "Split" function to the String type. I realize we can use regex but it's nice to keep things simple.
For example
Dim S as String
Dim Elements() as String
s=something
Elements=s.split(",")
or
Dim S as string
S=something
For Each E as String in s.split(",")
Next
You could even add overloaded splits (or Split2,Split3 etc.) that return a list, or something else useful.
Thanks!
For example
Dim S as String
Dim Elements() as String
s=something
Elements=s.split(",")
or
Dim S as string
S=something
For Each E as String in s.split(",")
Next
You could even add overloaded splits (or Split2,Split3 etc.) that return a list, or something else useful.
Thanks!