INDEX | CLUSTER | FEATURES | SHORT | FRAMES | NO FRAMES |
-- Make a misspelled matcher from search pattern `p'.
-- Case sensitivity (which is enabled at object creation)
-- is not modified. The maximum number of misspelled characters
-- depends on the patterns length and is taken from `default_blur'.
-- Make a misspelled matcher from search pattern `p' that is case
-- sensitive. The blurredness is taken from `default_blur'.
-- Make a misspelled matcher from search pattern `p' that is case
-- insensitive. The blurredness is taken from `default_blur'.
-- Make a misspelled matcher from search pattern `p' with at most
-- `mm' misspelled characters. Case sensitivity (which is enabled
-- at object creation) is not modified.
-- Make a misspelled matcher from search pattern `p' with at most
-- `mm' misspelled characters. The matcher is case sensitive.
-- Make a misspelled matcher from search pattern `p' with at most
-- `mm' misspelled characters. The matcher is case insensitive.
-- Set the maximum number of allowed mismatches.
-- Make searcher case-sensitive.
-- Make searcher case-insensitive.
-- Set matcher in multi-line mode. Mode is kept until matcher is
-- explicitely set to single-line mode.
-- Set matcher in single-line mode. Mode is kept until matcher is
-- explicitely set to multi-line mode.
-- Is matcher in single-line mode? This is the default on object
-- creation.
-- Default blurredness of the matcher.
-- 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, `mismatches' to the number of mismatches that
-- occured 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', `end_position' or
-- `mismatches'.
-- 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, `mismatches' to the number of mismatches
-- that occured 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', `end_position' or
-- `mismatches'.
-- Match `pattern' against string `s'. The whole string must
-- match. Set attributes `found' and - if match succeeded -
-- `start_position', `end_position' and `mismatches'.
-- Match `pattern' against prefix of string `s'.
-- Matching is forward in `s'. Set attributes `found' and -
-- if match succeeded - `start_position' and `end_position' and
-- `mismatches'.
-- Match `pattern' against suffix of string `s'.
-- Matching is backward in `s'. Set attributes `found' and -
-- if match succeeded - `start_position' and `end_position' and
-- `mismatches'.
-- Match `pattern' against any substring of string `s'.
-- Matching is from left to right. Set attributes `found' and -
-- if match succeeded - `start_position' and `end_position' and
-- `mismatches'.
-- Match `pattern' against any substring of string `s'.
-- Matching is from right to left. Set attributes `found' and -
-- if match succeeded - `start_position' and `end_position' and
-- `mismatches'.
-- Does string `s' matches with pattern? The whole string must
-- match. None of the position attributes nor `found' is modified.
-- Does any prefix of string `s' matches with pattern?
-- Neither a position attribute nor `found' is modified.
-- Does any suffix of string `s' matches with pattern?
-- Neither a position attribute nor `found' is modified.
-- Does any substring of `s' matches with pattern?
-- Neither a position attribute nor `found' is modified.
-- Does any substring of `s' matches with pattern?
-- Neither a position attribute nor `found' is modified.
INDEX | CLUSTER | FEATURES | SHORT | FRAMES | NO FRAMES |