I have an ArrayList Contain Strings as follow
1, 200, 2 , 434 , 3 , 400 , 4 , 500 ............................... and so on
how i can remove the number 1,2,3,4
i tried the followinh code but its not worrking
for (int i=0;i<content.Size();i++){
if(i%2== 0 ) // if the index is even
content.remove[i]
}
it gives me the following
1,200,434,3,40.............
and what i want is
200,434,400,500