Hi
I have a single string which I need to split two times.
I have no issues splitting it the first time like this way:
String: "0;1;2; | a;b;c; | A;B;C; |"
Action: Initiate Variable
Name: varArray
Type: Array
Action: Set Variable
Input: varArray
Value: split('string','|')
Output:
[
[
"0;4;Premium SSD;",
"1;4;Premium SSD;",
"2;4;Premium SSD;",
"3;4;Premium SSD;",
""
]
]
Now, how do I further split each item of the array, producing an array of arrays?