LinQ to Add Array in Another Array

Hi @Fabio_Villamil

Try the below linQ expression,

- Assign -> inputArray = {"1,2,3,4","5,6,7,8"}

- Assign -> outputArray = inputArray.Select(Function(str) str.Split({","c}).ToArray()).ToArray()

Check the below workflow for better understanding,

Hope it helps!!

2 Likes