Hi, i have string array which changes its length after regex.split.
For example, if string_map is "1,2,3", components.length is no more 12, but 3 ?
B4X:
Sub globals
dim components(12) as string
dim string_map as string
end sub
sub get_data
string_map = "1,2,3"
components = Regex.Split(",",string_map)
.....
end sub
For example, if string_map is "1,2,3", components.length is no more 12, but 3 ?
Last edited: