Peoplecode Multi-dimensional array
Hi,
I have been trying to find the correct syntax for multi dimensional arrays. The examples I found online and on PeopleBooks wasn't helpful for what I am trying to do.
I would like to have a 2 dimensional array.
an "array of array of string" or maybe even two arrays one of strings and one of arrays that can hold the following
Example:
datarow = ID1, LM19, SP18, LG19
datarow = ID2, QJ19, FG18, UU19
datarow = ID3, RT9, TS43, HRHT
let's say the above rows are in a csv file and I am reading them in.
I want to create an array of every of the above rows with Split(&DataRow, ","); which I am able to do with