If I have a string of Data:
And a 2D Array
Is there a way I can load RowOfData into the first row of the Array, with ONE function.
SO that :
I was hoping For something like this:
B4X:
Dim RowOfData As String = "1,2,3,4,5,"
B4X:
Dim DataGrid(5,5) As String
SO that :
B4X:
DataGrid(0,0) = "1"
DataGrid(0,1) = "2"
DataGrid(0,2) = "3"
DataGrid(0,3) = "4"
DataGrid(0,4) = "5"
B4X:
DataGrid (0) = Regex.Split(",", RowOfData)