Extracting items from a list

Hi, I’m trying to extract items from a list generated from a grasshopper plugin called Mosquito. Essentially, I want to cull specific information from a list, in this case, names of restaurants in Paris. Not every item is tied to a specific index number. How do I cull out items based on a certain phrase/information?

Thanks,

Culling involves making a list of “True”/“False”. Try to compare strings to figure out the items with “name” in them, and cull against that list.

Check out the Match Text Components ( R )RegEx input.


RegEx Search.gh (7.7 KB)

Thanks!