Hello Programmers,
is it possible to create new 1D array from 2D array?
for example from this array
String[][] ArrVal= {
{"rec", "02"},
{"proc", "03"},
{"hscode", "10"},
{"sitc", "21"}};
take first column of ArrVal[0] and make this as new array with ArrVal[1] as value of new array, for example :
String[] rec = {"02"}
String[] proc = {"03"}
String[] hscode = {"10"}
String[] sitc = {"21"}