I created a screen TextLIst then i declare a variable called var data type is Text . and default value is 1 2 3 4 5 . can I convert the text 1 2 3 4 5 into a List?? and return the list 1 2 3 4 5 in the screen If yes How?
Hi @Nilaj Chakraborty,
Store the value with a delimiter eg: "1,2,3..." and using string split you can split the string and can use them as a list.
NOTE: You can also use space between the text as delimiters.
please refer the OML attached.
Thanks,Vignesh Prakash.
To add to what Vignesh correctly wrote, you can also use a space " " as delimiter.