% var results = searchResultCollection.models; var numberOfHits = searchResultCollection.numberOfHits; var pager = searchResultCollection.pager; var hasNextPage = searchResultCollection.hasNextPage(); var hasPreviousPage = searchResultCollection.hasPreviousPage(); var searchInProgress = searchModel.get('searchInProgress'); var firstResultStart = searchModel.get('rows') * searchResultCollection.page; var query = hashModel.get('searchQuery'); var errors = searchResultCollection.errors; %>
Our search finds every document section that contains your query terms.
You may refine your search by using Boolean syntax:
| Find | Operator (case sensitive) | Example |
|---|---|---|
| This phrase | "" | "R. v. Douglas" |
| All of these words | AND | permit AND hunting |
| Any of these words | OR, no operator | city municipality |
| None of these unwanted words | NOT | custody NOT child |
| Words within the same paragraph | /p | levy /p probate |
| Words within the same sentence | /s | tax /s income |
| Words within n words | /n | letter /5 credit |
| Exclude plurals and derivatives | EXACT() | EXACT(translator) |
| ALL possible ENDINGS | * | constitu* |
Suggestions:
<%= numberOfHits %> results
<% n = firstResultStart + 1 %>