S
Steve Roberts
I have a variable that contains a string with up to 4 commas in it. I
need to split out each part of the sting into separate variables. I am not
sure where to begin. I have done this with just 1 comma but the logic I used
for that doesn't seem to apply here.
strTest = test1,test2,test3,test4,test5
Variable1 = test1
Variable2 = test2
Variable3 = test3
Variable4 = test4
Variable5 = test5
Thanks in advance for any suggestions you may have.
Steve
need to split out each part of the sting into separate variables. I am not
sure where to begin. I have done this with just 1 comma but the logic I used
for that doesn't seem to apply here.
strTest = test1,test2,test3,test4,test5
Variable1 = test1
Variable2 = test2
Variable3 = test3
Variable4 = test4
Variable5 = test5
Thanks in advance for any suggestions you may have.
Steve