Re: How to do proximity search that include accent marks [message #1669 is a reply to message #1668] |
Tue, 20 June 2023 09:07   |
FoxTrot Engineering
Messages: 417 Registered: April 2020
|
Senior Member |
|
|
Proximity search, a.k.a. "neighboring words", is actually that: whole or partial words in the same neighbourhood; thus you can't search for exact strings.
You may consider a regular expression, e.g. something like this:
```.{0,50}find
As usual when using regular expressions, also search for the whole word [find] to first reduce the number of documents where the regular expression is evaluated.
Jérôme - FoxTrot Engineering
[Updated on: Tue, 20 June 2023 13:32] Report message to a moderator
|
|
|