xyz
Thank you so much for the help.
Found this post about using Regex to filter a list.
https://stackoverflow.com/questions/43871510/how-to-quickly-filter-a-list-using-regex
But the solution suggests using an sqlite database as a data structure to improve the speed. What data structure is best for Godot for a list of strings where each entry can have cached & updated meta-data like (frequency of use) . JSON or just an array of arrays ?
Example
[
["A165", "Orange", "o", 12]
, ["A155", "Organic", "orc", 6]
]