Hi,
I have a string like
"The quick brown fox jumps over the lazy dog" (or longer)
I have to search through this string using boolean operators like
"quick AND brown OR fox"
mantaining the logical order, so "quick AND (brown OR fox)".
(consider that the search string can be longer with n search options).
What's the strategy?
How to proceed with this?
With regards
Vanditha