Hi
Im trying to split a plain table like this:
With this code:
For store the columns and rows in a list but its does'nt work,s can anyone help me with this idea?
Im trying to split a plain table like this:
# NAME AGE
1 BRIAN 23
2 MARK 10
With this code:
B4X:
Lines = Regex.Split(CRLF,TextArea1.text)
Dim columns() As String
If(Msg.Show2("¿Have column?","Aviso","Yes","No","")) = -1 Then
columns=Regex.Split(" ",Lines(0).Replace(" "," "))
For i = 0 To c.Length
lstColumns.Add(columns(i))
Next
For i = 0 To Lines.Length
lstFiles.Add(Lines(i))
Next
End If
Log(lstColumns)
For store the columns and rows in a list but its does'nt work,s can anyone help me with this idea?
Last edited: