I have a comma separated string.
e.g. {\"one,two,three\"}
Can anyone please tell me if I can create an array from this and if so, how? in VB.
Like this:
dim str as string = "one,two,three" dim str2() as string = split(str, ",")
Reference: