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