A web-based application is set up to search a collection of PDF files. The application must be able to provide full-text search using the "any words" query syntax, as well as date range searching. Additionally, users can enter keywords to search for in the "Author" and "Subject" fields of the PDF files.
To implement this type of searching, the application would do the following:
For example, suppose a user is searching for a 2001 document on tax policy that concerns annuities and life insurance. The user fills out the search form as follows:
Search request: +"life insurance" +annuities Subject: tax Date: January 2001 - December 2001
The application would set up a search as follows:
Request: +"life insurance" +annuities BooleanConditions: (Subject contains (tax)) FileConditions: xfilter(date "M01/D01/Y2001~~M12/D31/Y2001")
|
Copyright (c) 1995-2008 dtSearch Corp. All rights reserved.
|