| Home >> All >> com >> jcorporate >> expresso >> ext >> [ regexp Javadoc ] |
com.jcorporate.expresso.ext.regexp: Javadoc index of package com.jcorporate.expresso.ext.regexp.
Package Samples:
com.jcorporate.expresso.ext.regexp
Classes:
RE: RE is an efficient, lightweight regular expression evaluator/matcher class. Regular expressions are pattern descriptions which enable sophisticated matching of strings. In addition to being able to match a string against a pattern, you can also extract parts of the match. This is especially useful in text parsing! Details on the syntax of regular expression patterns are given below. To compile a regular expression (RE), you can simply construct an RE matcher object from the string specification of the pattern, like this: RE r = new RE("a*b"); Once you have done this, you can call either of the ...
RECompiler: A regular expression compiler class. This class compiles a pattern string into a regular expression program interpretable by the RE evaluator class. The 'recompile' command line tool uses this compiler to pre-compile regular expressions for use with RE. For a description of the syntax accepted by RECompiler and what you can do with regular expressions, see the documentation for the RE matcher class.
REProgram: A class that holds compiled regular expressions. This is exposed mainly for use by the recompile utility (which helps you produce precompiled REProgram objects). You should not otherwise need to work directly with this class.
CharacterIterator: Encapsulates different types of character sources - String, InputStream, ... Defines a set of common methods
RESyntaxException: Exception thrown to indicate a syntax error in a regular expression.
StringCharacterIterator: Encapsulates String
| Home | Contact Us | Privacy Policy | Terms of Service |