Is there a way we can take separate words from text input and run search on each?

Is there a way we can take separate words from text input and run search on each?

and if we can remove words with only 2 characters from a line.

for example if we input old cars in country

if search count is 0
then remove ‘in’ or any word with character length less then 3
and search for ‘old cars country’
then every word separated
Search for letter1
Search for letter 2
Search for letter 3
And add all results to repeat group

If I understand correctly, are you are trying to create a simple algorithmic approach to search queries until a result is returned? What about running a long series of ‘do a search for’ based on a conditional that extracts words/letters via Regex (first word, second word, first letter, etc) ‘merged with’ another ‘do a search for’…and so forth…and so forth. Basically, string a bunch of ‘do search for’ together using ‘merged with’…and then at the end of that dynamic statement you may or may not want to add an “Advanced” filter to apply constraints to the returned result.

I currently use this method to search through articles that contain my search query and it seems to work ok for now. Maybe someone else can chime in with another method.

1 Like

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