#Help with List of strings with Split for other lists

1 messages · Page 1 of 1 (latest)

fair badge
#

Hi, I need help on something about List<string> ListExample.Split, so I made the List1.Split("|");, List2.Split("|");, and List3.Split("|");, and I got this string value1|value2|value3. I want the value1 in list 1, value2 in list 2, and value3 in list 3, I know how to split, but the 3 value texts into one list, how can I add value1 in list 1, value2 in list 2, and value3 in list 3 with the split?

plucky burrow
#

So to summarize for the sake of clarity: You have 1 list (let's call it a) with 3 values and now you want to value the first value in a new list (b), the second in another new list (c) and so on . Have I understood that correctly?

#

@fair badge