I have ArrayList
of type String
Three-dimensional:
String[][]
And I would like to do a search system that filters the values, eg:
String[][] table = {{"Ronaldo","32","Atacante","Sao Paulo"},
{"Cristiano","25","Meio Campo","Curitiba"},
{"Marcos","27","Goleiro","Ponte Preta"};
Well, we assume you have a search page with the fields "Name", "Age", "Position in Field" and "Playing Time", you will only fill in the fields Age and Position and would like to do a research system that presents all the results that contain the respective parameters, is it possible?