How to create a search filter for a String?

Asked

Viewed 56 times

0

My doubt:

My goal is to create an application that Voce provides search parameters for it and it can present the search result.

Like, you have the Akinator app, you give him information and at the end he hits the character that you were thinking of, I make a system similar but following another purpose.

Exemplo:
String[][] table = {{"Ronaldo","32","Atacante","Sao Paulo"},
                    {"Cristiano","25","Meio Campo","Curitiba"},
                    {"Marcos","27","Goleiro","Ponte Preta"};

//Estrutura > String[][] table = {{"Nome do Jogador","Idade","Posicao","Time"}};

Then I need to make a search filter that allows him to find the "Player Name" by entering only the values "Age", "Position" or "Time"... It is possible?

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.