From: Jaswinder Singh
- [% l('Keyword Search Tips') %]
- [% i18n_advsearch = l('Advanced Search');
- l('Try changing to [_1].', '' _ i18n_advsearch _ '') %]
-
- [% l('Adjacency') %]
- [% l('Multiple words are not searched together as a phrase. They will ' _
- 'be found in various parts of the record. To search for a phrase, enclose your ' _
- 'search terms in quotation marks.') %]
- [% i18n_searchphrase = l('garcia marquez');
- l('(example: [_1])', '"' _ i18n_searchphrase _ '"') %]
-
- [% l('Truncation') %]
- [% l('Words may be right-hand truncated using an asterisk. Use a single asterisk * ' _
- 'to truncate any number of characters.') %]
- [% i18n_searchtrunc = l('environment* agency');
- l('(example: [_1])', '' _ i18n_searchtrunc _ '') %]
-
- [% l('Anchored Searching') %]
- [% l('You may use ^ and $ to indicate "phrase begins with" and ' _
- '"phrase ends with," respectively, within a search phrase ' _
- 'enclosed in quotation marks.') %]
- [% i18n_searchbegins = l('harry');
- i18n_searchends = l('stone');
- l('(examples: [_1] for phrases that begin with the term [_2]. ' _
- '[_3] for phrases that end in [_4].)',
- '"^' _ i18n_searchbegins _ '"', '' _ i18n_searchbegins _ '',
- '"' _ i18n_searchends _ '$"', '' _ i18n_searchends _ '') %]
-