Basic search box query results

Where can I find code to create a simple search box, and it queries, and returns the results below the search box?

1 Like

What do you want to search, a local table or the
Internet?

1 Like

Thanks just a local table, such as a csv file. I am trying to understand where to put the csv file, and then figure out what code is needed to search the the data in the csv file, and perhaps display it in a format I would like… Thanks,

1 Like

Okay…

look at loadTable first, probably with Header

Then see tutorial data on the website

Your csv can be located in the data folder of your sketch

1 Like

A simple text input can be done in function keyPressed() with ()

See reference

So myInput += key;

and on Enter submit and start search

See Table in the reference

1 Like