INDEX | CLUSTER | FEATURES | SHORT | FRAMES | NO FRAMES |
-- Make a searcher from search pattern `p'.
-- Case sensitivity (which is enabled at object creation)
-- is not modified.
-- Make a case sensitive searcher from search pattern `p'.
-- Make a case insensitive searcher from search pattern `p'.
-- Make searcher case-sensitive.
-- Make searcher case-insensitive.
-- Is the searcher case insensitive?
-- Search for `pattern' in string `s'. Start searching at index
-- position `s_from' and search until the pattern matches (while
-- ignoring any characters behind `s_to'). If pattern matches, set
-- `found' to true and `start_position' and `end_position'
-- to the corresponding index positions (relative to the beginning
-- of the string). If the pattern doesn't match, set `found' to
-- false, but do not modify `start_position' or `end_position'.
-- Search for `pattern' in string `s'. Start searching at index
-- position `s_to' and search backward until the pattern matches
-- (ignoring any characters before `s_from'). If pattern matches,
-- set `found' to true and `start_position' and `end_position'
-- to the corresponding index positions (relative to the beginning
-- of the string). If the pattern doesn't match, set `found' to
-- false, but do not modify `start_position' or `end_position'.
INDEX | CLUSTER | FEATURES | SHORT | FRAMES | NO FRAMES |