Split List In Two

Hello,

Looking for some help.
I have a textbox that contains this text.

Input_Text = "Alpha|1,2,3,4,5"

I want to split the text in two lists to read the following.

List_1 = "Alpha"
List_2 = "1,2,3,4,5"

List_1 will be the first value before the "|" symbol.
List_2 will be the remaining values after the "|". Separated by ",".

blocks (1)

Thank you

image

1 Like

and if you need second list to be another list

then you need to split it further using ','

1 Like