Searched defs:RE (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/
H A DRE.java27 * RE is an efficient, lightweight regular expression evaluator/matcher
35 * To compile a regular expression (RE), you can simply construct an RE
39 * RE r = new RE("a*b");
43 * Once you have done this, you can call either of the RE.match methods to
60 * RE r = new RE("(a*)b"); // Compile expression
87 * The full regular expression syntax accepted by RE is described here:
230 * RE run
298 public class RE implements Serializable class in inherits:Serializable
424 public RE(String pattern) throws RESyntaxException method in class:RE
440 public RE(String pattern, int matchFlags) throws RESyntaxException method in class:RE
464 public RE(REProgram program, int matchFlags) method in class:RE
478 public RE(REProgram program) method in class:RE
487 public RE() method in class:RE
[all...]

Completed in 132 milliseconds