- & -> AND
- | -> OR
- &! -> NOT (without)
All phrases that do not contain them are searched as a whole. By using them, we can make more detailed searches.
Example Ocr: Lorem ipsum dolor sit amet
Example Searches:
- lorem ipsum -> Found
- “Lorem ipsum” -> Found (same query as above)
- lorem something ipsum -> Couldn’t find
- “Lorem something ipsum” -> Couldn’t find (same query as above)
- “Lorem & ipsum & dolor” -> Found
- lorem | ipsum | something -> found
- lorem & ipsum &! Something -> Found
- lorem & ipsum &! Sit -> Not Found
- “Lorem ipsum” & sit & amet &! Something -> Found
- “Lorem ipsum” | “Something else” -> Found
- “Lorem ipsum” &! “Sit amet” -> Not Found
- (lorem | something) & “sit amet” -> Found
- (lorem | ipsum) & sit &! amet -> Not Found
Similarly, long complex queries can be written.