Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. The single character wildcard search looks for terms that match that with the single character replaced. For example, to search for "invoice" or "expense" you can use the search:

      invo?ce

 

...

      2. Multiple character wildcard searches looks for 0 or more characters. For example, to search for expense or expenses you can use the search:

 

      expense*

...

      3.You can also use the wildcard searches in the middle of a term.

 

      exp*ense

Note: You cannot use a * or ? symbol as the first character of a search.

...

  1. To search for a term similar in spelling to "expense" use the fuzzy search:

      expense~

...

       2. The value is between 0 and 1, with a value closer to 1 only terms with a higher similarity will be matched. For example: 

      expense~0,8

      The default that is used if the parameter is not given is 0.5.

...

This will find documents whose mod_date fields have values between 300201 and 30050, inclusive.

 

...

      2. Note that Range Queries are not reserved for date fields. You could also use range queries with non-date fields: 

      Title:{Document TO Invoice}

...

and you want the term "expense" to be more relevant boost it using the ^ symbol along with the boost factor next to the term. You would type:

          expense^4 form

 

...

       2. This will make documents with the term expense appear more relevant. You can also boost Phrase Terms as in the example: 

         “expense form”^4

...