Searching from list of texts

Hi all,

I am struggling to find a way to make a search.

I have a db that stores lists of texts as values. You can think them as say ‘descriptions of items’ in random texts.

I need to implement a search function to fetch the data that contain the query text in the search box. I can do this for titles, names… except the date that stores a list of texts.

For example, a data may a value

  • this is awesome
  • very affordable
  • value for money…

And if I enter “awesome” in the search box, I want pull this data out to the RG.

Could anyone give me a help?

Thanks.

@boholsys there are multiple ways to achieve this,

  1. Use regex to extract each words from the list of text and apply filter on the regex extracted items.
  2. Use typesense or relevant search tool to achieve results based on relevancy and imply complex search.

You can also refer to Multiple list - Extract with regex this post for similar solution

1 Like

This topic was automatically closed after 70 days. New replies are no longer allowed.