Methods Summary |
---|
public java.util.Vector | getGroups(java.lang.String argument)Returns a Vector of matched groups found in the argument
using default options.
Group 0 will be the full match, the rest are the
parenthesized subexpressions .
|
public java.util.Vector | getGroups(java.lang.String input, int options)Get the match groups from this regular expression. The return
type of the elements is always String.
|
public java.lang.String | getPattern()Get a String representation of the regexp pattern
|
public boolean | matches(java.lang.String argument)Does the given argument match the pattern?
|
public boolean | matches(java.lang.String input, int options)Does this regular expression match the input, given
certain options
|
public void | setPattern(java.lang.String pattern)Set the regexp pattern from the String description.
|