Skip to content

Commit

Permalink
Merge pull request #545 from folio-org/fulltext-minus-number
Browse files Browse the repository at this point in the history
Document fulltext matching with minus/hyphen and numbers.
  • Loading branch information
julianladisch authored Nov 1, 2019
2 parents 9d25bf6 + f7040ca commit 61a103e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -990,6 +990,10 @@ CQL `field adj "bar baz"` matches `bar baz`, `bar-baz`, `foo-bar-baz`, `foo-bar

CQL `field adj "bar-baz"` matches `bar-baz`, but neither `bar baz` nor `foo-bar-baz` nor `foo-bar baz` nor `bar-baz-foo`.

CQL `field adj "123 456"` matches `123 456`, but not `123-456`.

CQL `field adj "123-456"` matches `123-456`, but not `123 456`.

`foo/bar/baz` is a single word, while `foo//bar//baz`, `foo///bar///baz`, `foo////bar////baz`, etc.
are split into the three words `foo`, `/bar`, and `/baz` (always reduced to a single slash).

Expand Down

0 comments on commit 61a103e

Please sign in to comment.