Hi
Could you give some suggestions on how to delete an element from two dimensional string array.
Sample Code:
public void addElements(){
columnData = new String[4][3];
columnData[0][0] = "William";
columnData[0][1] = "A";
columnData[0][2] = "Wilson";
for(int i=1;i<4;i++){
columnData[0] = "William";
columnData[i][1] = String.valueOf(i*13);
Calendar c = new GregorianCalendar();
columnData[i][2] = ((Date)c.getTime()).toString();
}
}
I will compare columnData[1] with some string and when it matches, I have to remove column[i] from the two dimensional array.
Any suggestions.
Thanks.