Java.Util.Regex.Pattern: Method Members

The methods of Java.Util.Regex.Pattern are listed below. For a list of all members, see the Pattern Members list.

See Also: Inherited members from Java.Lang.Object

Public Methods

static
Compile(string) : Pattern
Equivalent to Pattern.compile(pattern, 0).
static
Compile(string, RegexOptions) : Pattern
Returns a compiled form of the given regularExpression, as modified by the given flags.
Flags() : RegexOptions
Returns the flags supplied to compile.
InvokePattern() : string
Returns the regular expression supplied to compile.
Matcher(Java.Lang.ICharSequence) : Matcher
Returns a Java.Util.Regex.Matcher for this pattern applied to the given input.
Matcher(string) : Matcher
Documentation for this section has not yet been entered.
static
Matches(string, Java.Lang.ICharSequence) : bool
Tests whether the given regularExpression matches the given input.
static
Matches(string, string) : bool
Documentation for this section has not yet been entered.
static
Quote(string) : string
Quotes the given string using "\Q" and "\E", so that all meta-characters lose their special meaning.
Split(Java.Lang.ICharSequence) : string[]
Equivalent to split(input, 0).
Split(string) : string[]
Documentation for this section has not yet been entered.
Split(Java.Lang.ICharSequence, int) : string[]
Splits the given input at occurrences of this pattern.
Split(string, int) : string[]
Documentation for this section has not yet been entered.