-
Notifications
You must be signed in to change notification settings - Fork 3
Finder language
To search inside article one shall define a query using following commands:
-
EXACT_WORD(word,case_sensitive)- finds an exact word in articles text, word must be put inside""putting parametercase_sensitivewill find only match words with the same case (by default it can be different).- Example:
EXACT_WORD("IEEE",case_sensitive)
- Example:
-
PARTIAL_WORD(word,case_sensitive)- finds a word in article text - may be as a part of other word, word must be put inside"", putting parametercase_sensitivewill find only match words with the same case (by default it can be different).- Example:
PARTIAL_WORD("applica")
- Example:
-
AND(finder1, finder2, ...)- aggregates multiple finders (at least one), results of the finders will be accepted only if all finders return any match.- Example: 'AND(EXACT_WORD("neural"),PARTIAL_WORD("networ"))
-
OR(finder1, finder2, ...)- aggregates multiple finders (at least one), results of the finders will be accepted only if any of the finders return any match.- Example:
OR(EXACT_WORD("blue"), EXACT_WORD("orange"))
- Example: