I can't find string split function . How to get it ? for eg:
Actually array variable rst shoud get splitted strings from temp .
P.S: Last line in code does not work .
B4X:
dim temp as string
dim rst() as string
temp = "Ravi,Hari,Raman,Anitha,Vinod"
rst = Split(temp,",")
P.S: Last line in code does not work .