B4J Question How To Remove An Index Of String Array

adjie

Member
Licensed User
Longtime User
Hello,

Here is my situation :

B4X:
dim cInput = "A,B,C"
dim cData() as string  = Regex.Split(",", cInput)

it returns
B4X:
  cData(0) = "A"
  cData(1) = "B"
  cData(2) = "C"
Now I want to remove cData(2) without editing the cInput, anyone can help, please ?
 
Last edited:
Top