INDEX | CLUSTER | FEATURES | SHORT | FRAMES | NO FRAMES |
-- Make the matcher case-sensitive.
-- Make the matcher 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.
-- Start position of the `i'th subexpression in the search string.
-- If `i'th subexpression was not part of the match 0 is returned.
-- End position of the `i'th subexpression in the search string.
-- If `i'th subexpression was not part of the match 0 is returned.
-- 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 contains subexpressions (r.e.'s
-- enclosed in `()') also record their start and end positions
-- in `s'. 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 contains subexpressions (r.e.'s
-- enclosed in `()') also record their start and end positions
-- in `s'. If the pattern doesn't match, set `found' to
-- false, but do not modify `start_position' or `end_position'.
-- Match `pattern' against string `s'. The whole string must
-- match. Set attributes `found' and - if match succeeded -
-- `start_position' and `end_position', and record start and end
-- position of any matched subexpression.
-- Match `pattern' against any prefix of string `s'.
-- Matching is forward in `s'. Set attributes `found' and -
-- if match succeeded - `start_position' and `end_position'
-- and record start and end position of any matched subexpression.
-- Match `pattern' against any suffix of string `s'.
-- Matching is backward in `s'. Set attributes `found' and -
-- if match succeeded - `start_position' and `end_position'
-- and record start and end position of any matched subexpression.
-- 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 record start and end position of any matched subexpression.
-- 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 record start and end position of any matched subexpression.
-- 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 |