Returns a Vector of matched groups found in the argument.
Group 0 will be the full match, the rest are the
parenthesized subexpressions
.
Parameters: input - the string to match against Parameters: options - the regex options to use the vector of groups throws: BuildException - on error
Does the given argument match the pattern using default options?
Parameters: argument - the string to match against true if the pattern matches throws: BuildException - on error
Does the given argument match the pattern?
Parameters: input - the string to match against Parameters: options - the regex options to use true if the pattern matches throws: BuildException - on error