| Home >> All >> com >> memoire >> [ re Javadoc ] |
com.memoire.re: Javadoc index of package com.memoire.re.
Package Samples:
com.memoire.re
Classes:
RE: RE provides the user interface for compiling and matching regular expressions. A regular expression object (class RE) is compiled by constructing it from a String, StringBuffer or character array, with optional compilation flags (below) and an optional syntax specification (see RESyntax; if not specified, RESyntax.RE_SYNTAX_PERL5 is used). Various methods attempt to match input text against a compiled regular expression. These methods are: isMatch : returns true if the input text in its entirety matches the regular expression pattern. getMatch : returns the first match found in the input text, ...
REMatchEnumeration: An REMatchEnumeration enumerates regular expression matches over a given input text. You obtain a reference to an enumeration using the getMatchEnumeration() methods on an instance of RE. REMatchEnumeration does lazy computation; that is, it will not search for a match until it needs to. If you'd rather just get all the matches at once in a big array, use the getAllMatches() methods on RE. However, using an enumeration can help speed performance when the entire text does not need to be searched immediately. The enumerated type is especially useful when searching on an InputStream, because the InputStream ...
RESyntax: An RESyntax specifies the way a regular expression will be compiled. This class provides a number of predefined useful constants for emulating popular regular expression syntaxes. Additionally the user may construct his or her own syntax, using any combination of the syntax bit constants. The syntax is an optional argument to any of the matching methods on class RE.
REException: This is the regular expression exception class. An exception of this type defines the three attributes: A descriptive message of the error. An integral type code equivalent to one of the statically defined symbols listed below. The approximate position in the input string where the error occurred.
REMatch: An instance of this class represents a match completed by a gnu.regexp matching function. It can be used to obtain relevant information about the location of a match or submatch.
REFilterInputStream: Replaces instances of a given RE with replacement text.
RECharIndexedString
RETokenRepeated
RETokenBackRef
RETokenChar
RETokenOneOf
REToken
RETokenAny
RECharIndexedStringBuffer
RECharIndexedInputStream
RETokenRange
RETokenEnd
RECharIndexedCharArray
RECharIndexed
RETokenStart
IntPair
CharUnit
RETokenPOSIX
| Home | Contact Us | Privacy Policy | Terms of Service |