* Any package for boolean search?
@ 2024-12-25 10:01 Jean Louis
2024-12-25 16:21 ` [External] : " Drew Adams
2024-12-26 6:02 ` Joel Reicher
0 siblings, 2 replies; 9+ messages in thread
From: Jean Louis @ 2024-12-25 10:01 UTC (permalink / raw)
To: Help GNU Emacs
Hello to all,
Boolean Search: This is a method where search terms are combined using
boolean logic, as described by the operators AND, OR, and NOT.
I would like to implement this classic into the website search. And I
wish to keep it simple.
Here are 20 different queries using boolean search operators AND, OR, and NOT:
1. `apple AND fruit`
2. `car OR truck`
3. `not google`
4. `(apple OR banana) AND fruit`
5. `football NOT soccer`
6. `book AND author`
7. `(dog OR cat) NOT animal`
8. `house AND (furniture OR decor)`
9. `google AND (search OR engine)`
10. `not (car OR truck)`
11. `(phone OR laptop) AND technology`
12. `flower AND (garden OR plant)`
13. `(music OR video) NOT entertainment`
14. `amazon AND (shopping OR online)`
15. `not (phone OR computer)`
16. `(camera OR photo) AND equipment`
17. `travel AND (hotel OR resort)`
18. `(newspaper OR magazine) NOT media`
19. `(game OR puzzle) AND entertainment`
20. `(coffee OR tea) AND (breakfast OR morning)`
I think if there are no parenthesis I should even disregard the OR, is
it right?
I wish there would be some ready made package that handles those
issues.
Jean Louis
^ permalink raw reply [flat|nested] 9+ messages in thread
* RE: [External] : Any package for boolean search?
2024-12-25 10:01 Any package for boolean search? Jean Louis
@ 2024-12-25 16:21 ` Drew Adams
2024-12-26 0:15 ` Jean Louis
2024-12-26 6:02 ` Joel Reicher
1 sibling, 1 reply; 9+ messages in thread
From: Drew Adams @ 2024-12-25 16:21 UTC (permalink / raw)
To: Jean Louis, Help GNU Emacs
> Boolean Search: This is a method where search terms are combined using
> boolean logic, as described by the operators AND, OR, and NOT.
>
> I would like to implement this classic into the website search. And I
> wish to keep it simple.
I can't help you wrt website searches etc. Hopefully
someone else will.
___
But FWIW, Isearch+ provides such functionality, on
the fly, for incremental buffer/file searching.
https://www.emacswiki.org/emacs/DynamicIsearchFiltering
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [External] : Any package for boolean search?
2024-12-25 16:21 ` [External] : " Drew Adams
@ 2024-12-26 0:15 ` Jean Louis
0 siblings, 0 replies; 9+ messages in thread
From: Jean Louis @ 2024-12-26 0:15 UTC (permalink / raw)
To: Drew Adams; +Cc: Help GNU Emacs
* Drew Adams <drew.adams@oracle.com> [2024-12-25 19:21]:
> > Boolean Search: This is a method where search terms are combined using
> > boolean logic, as described by the operators AND, OR, and NOT.
> >
> > I would like to implement this classic into the website search. And I
> > wish to keep it simple.
>
> I can't help you wrt website searches etc. Hopefully
> someone else will.
I need more time, as I spend time in research. I think hashes are not
easiest way to go, so I will do this way:
1. Make a simple list of strings;
2. Concatenate id, name, description, summary or full text without
markup to single line;
3. Search lines;
4. Extract ID
5. Load nicely prepared name, description, image from hash
6. Display on the website.
We will see how fast it works.
> But FWIW, Isearch+ provides such functionality, on
> the fly, for incremental buffer/file searching.
>
> https://www.emacswiki.org/emacs/DynamicIsearchFiltering
--
Jean Louis
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Any package for boolean search?
2024-12-25 10:01 Any package for boolean search? Jean Louis
2024-12-25 16:21 ` [External] : " Drew Adams
@ 2024-12-26 6:02 ` Joel Reicher
2024-12-26 10:58 ` Jean Louis
2024-12-26 11:00 ` Jean Louis
1 sibling, 2 replies; 9+ messages in thread
From: Joel Reicher @ 2024-12-26 6:02 UTC (permalink / raw)
To: Jean Louis; +Cc: Help GNU Emacs
Jean Louis <bugs@gnu.support> writes:
> Boolean Search: This is a method where search terms are combined
> using boolean logic, as described by the operators AND, OR, and
> NOT.
>
> I would like to implement this classic into the website
> search. And I wish to keep it simple.
Is there an Emacs or elisp aspect to this question I might be
missing?
Are you after a package to submit a search to a particular search
engine? Is that what you mean?
(There are a few such packages on melpa; I don't know how they
compare.)
Regards,
- Joel
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Any package for boolean search?
2024-12-26 6:02 ` Joel Reicher
@ 2024-12-26 10:58 ` Jean Louis
2024-12-26 23:14 ` Joel Reicher
2024-12-26 11:00 ` Jean Louis
1 sibling, 1 reply; 9+ messages in thread
From: Jean Louis @ 2024-12-26 10:58 UTC (permalink / raw)
To: Joel Reicher; +Cc: Help GNU Emacs
* Joel Reicher <joel.reicher@gmail.com> [2024-12-26 09:03]:
> Jean Louis <bugs@gnu.support> writes:
>
> > Boolean Search: This is a method where search terms are combined using
> > boolean logic, as described by the operators AND, OR, and NOT.
> >
> > I would like to implement this classic into the website search. And I
> > wish to keep it simple.
>
> Is there an Emacs or elisp aspect to this question I might be
> missing?
I don't know what you mean. I am looking for some ready package that
provides maybe string searching within other strings, by using boolean
operators.
I am starting the logic here below:
(defun wrs-search-query-process (query)
(let ((query (wrs-search-clean-query query)))
(cond
;; dispatch if there is no boolean
((not (string-match-p (rx word-start (or "OR" "NOT" "AND" word-end)) query))
(wrs-search-query query))
;; dispatch when there is AND but not OR or NOT
((and (string-match-p (rx word-start "AND" word-end) query)
(not (string-match-p (rx word-start (or "OR" "NOT" word-end)) query)))
(wrs-search-query-and query)))))
So there will be different ways how to process those parts of the
query separated by AND, OR, NOT and in various combinations.
> Are you after a package to submit a search to a particular search
> engine? Is that what you mean?
No.
It is website search, when user enters some terms to get list of
website pages. I don't have many, but 1300+ in single website has some
key information for people.
--
Jean Louis
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Any package for boolean search?
2024-12-26 6:02 ` Joel Reicher
2024-12-26 10:58 ` Jean Louis
@ 2024-12-26 11:00 ` Jean Louis
1 sibling, 0 replies; 9+ messages in thread
From: Jean Louis @ 2024-12-26 11:00 UTC (permalink / raw)
To: Joel Reicher; +Cc: Help GNU Emacs
* Joel Reicher <joel.reicher@gmail.com> [2024-12-26 09:03]:
> Jean Louis <bugs@gnu.support> writes:
>
> > Boolean Search: This is a method where search terms are combined using
> > boolean logic, as described by the operators AND, OR, and NOT.
> >
> > I would like to implement this classic into the website search. And I
> > wish to keep it simple.
>
> Is there an Emacs or elisp aspect to this question I might be missing?
Did you mean if it is in the context of Emacs Lisp? Of course, that is
why I am looking if there is any available package.
Maybe I should index all packages and summarize them to get database
of what is available.
package-list is not enough descriptive.
--
Jean Louis
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Any package for boolean search?
2024-12-26 10:58 ` Jean Louis
@ 2024-12-26 23:14 ` Joel Reicher
2024-12-27 11:05 ` Jean Louis
0 siblings, 1 reply; 9+ messages in thread
From: Joel Reicher @ 2024-12-26 23:14 UTC (permalink / raw)
To: Help GNU Emacs
Jean Louis <bugs@gnu.support> writes:
> * Joel Reicher <joel.reicher@gmail.com> [2024-12-26 09:03]:
[...]
>> Is there an Emacs or elisp aspect to this question I might be
>> missing?
>
> I don't know what you mean. I am looking for some ready package
> that provides maybe string searching within other strings, by
> using boolean operators.
Why are you expecting this to be a package? Strings are a
native/primitive elisp datatype.
(info "(elisp) Text Comparison")
and also string-match at (info "(elisp) Regexp Search")
Regards,
- Joel
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Any package for boolean search?
2024-12-26 23:14 ` Joel Reicher
@ 2024-12-27 11:05 ` Jean Louis
2024-12-28 3:44 ` Joel Reicher
0 siblings, 1 reply; 9+ messages in thread
From: Jean Louis @ 2024-12-27 11:05 UTC (permalink / raw)
To: Joel Reicher; +Cc: Help GNU Emacs
* Joel Reicher <joel.reicher@gmail.com> [2024-12-27 02:16]:
> Jean Louis <bugs@gnu.support> writes:
>
> > * Joel Reicher <joel.reicher@gmail.com> [2024-12-26 09:03]:
>
> [...]
>
> > > Is there an Emacs or elisp aspect to this question I might be
> > > missing?
> >
> > I don't know what you mean. I am looking for some ready package that
> > provides maybe string searching within other strings, by using boolean
> > operators.
>
> Why are you expecting this to be a package? Strings are a native/primitive
> elisp datatype.
Thanks, though, I do not expect, I am asking if someone knows about
it. Those AND, OR, NOT are pretty classic, not so?
> (info "(elisp) Text Comparison")
I can't find there anything related, sure as basic functions is very
useful, but doesn't parse the query.
- cat dog -- I would use this with AND automatically; but maybe add OR
on the end of results;
- cat and dog -- this is ONLY AND, without OR results
- cat dog OR giraffe in Africa -- here I would parse it as:
- cat AND dog -- is it there?
- but it can be also "giraffe AND Africa"
There are too many combinations and I have to make it so that I can
first parse the query into smaller pieces.
Then this query is dispatched to more basic functions.
> and also string-match at (info "(elisp) Regexp Search")
Sure! Thanks much. I am using those functions and it is useful let's
say, if I need to search with "OR" some few words.
But what if there are complex queries:
cat plays with dog OR dog plays with dogs NOT giraffe
or maybe this way:
(cat plays with dog) OR (dog plays with dogs) NOT giraffe
Then I have to parse it, separate it:
- NOT giraffe
- is there any result for cat? But no giraffe
- or any result for dog? But no giraffe
I hope you understand the meaning by that example.
It is called Boolean query parser, but when I started this question I
did not know the title. Now I know it.
Here is example in PHP
skipperbent/pecee-boolean-query-parser: Convert a boolean search query into a query that is compatible with a fulltext search.
https://github.com/skipperbent/pecee-boolean-query-parser
As there is apparently no such ready package in Emacs, then I will go
slow and start with functional examples:
1. For any query, find all occurences matching exactly; for query "cat
plays" it will find "Cat plays with ball"
2. Parse words and find all occurences matching same words but with
AND: for query "cat plays" it will also find "Cat likes doggy which
plays with the ball"
Then I can think from there how to develop OR and NOT.
--
Jean Louis
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Any package for boolean search?
2024-12-27 11:05 ` Jean Louis
@ 2024-12-28 3:44 ` Joel Reicher
0 siblings, 0 replies; 9+ messages in thread
From: Joel Reicher @ 2024-12-28 3:44 UTC (permalink / raw)
To: Help GNU Emacs
Jean Louis <bugs@gnu.support> writes:
> * Joel Reicher <joel.reicher@gmail.com> [2024-12-27 02:16]:
>> Jean Louis <bugs@gnu.support> writes:
>>
>>> * Joel Reicher <joel.reicher@gmail.com> [2024-12-26 09:03]:
>>
>> [...]
>>
>>>> Is there an Emacs or elisp aspect to this question I might be
>>>> missing?
>>>
>>> I don't know what you mean. I am looking for some ready
>>> package that provides maybe string searching within other
>>> strings, by using boolean operators.
>>
>> Why are you expecting this to be a package? Strings are a
>> native/primitive elisp datatype.
>
> Thanks, though, I do not expect, I am asking if someone knows
> about it. Those AND, OR, NOT are pretty classic, not so?
For algebra, yes. For searching, no.
But because searching is done with predicates (equality and
perhaps an ordering, as I mentioned in another email) other
predicates can be formed from the basic ones using algebraic
operators.
>> (info "(elisp) Text Comparison")
>
> I can't find there anything related, sure as basic functions is
> very useful, but doesn't parse the query.
Oh, you're asking for something to parse a query. Now I
understand.
You can't expect there already to be a package for parsing a
syntax you're designing now.
But if you're not designing the syntax and you want to find
something that will do an existing syntax, possibly the simplest
is Lisp itself since Lisp has all these operators and is
homoiconic. If the query syntax is Lisp, the string can be passed
to read and eval and you're done, I think.
Regards,
- Joel
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-12-28 3:44 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-25 10:01 Any package for boolean search? Jean Louis
2024-12-25 16:21 ` [External] : " Drew Adams
2024-12-26 0:15 ` Jean Louis
2024-12-26 6:02 ` Joel Reicher
2024-12-26 10:58 ` Jean Louis
2024-12-26 23:14 ` Joel Reicher
2024-12-27 11:05 ` Jean Louis
2024-12-28 3:44 ` Joel Reicher
2024-12-26 11:00 ` Jean Louis
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.