The members of Java.Util.Regex.Pattern are listed below.
See Also: Inherited members from Java.Lang.Object
const | CanonEq | RegexOptions (128). This constant specifies that a character in a Pattern and a character in the input string only match if they are canonically equivalent. |
const | CaseInsensitive | RegexOptions (2). This constant specifies that a Pattern is matched case-insensitively. |
const | Comments | RegexOptions (4). This constant specifies that a Pattern may contain whitespace or comments. |
const | Dotall | RegexOptions (32). This constant specifies that the '.' meta character matches arbitrary characters, including line endings, which is normally not the case. |
const | Literal | RegexOptions (16). This constant specifies that the whole Pattern is to be taken literally, that is, all meta characters lose their meanings. |
const | Multiline | RegexOptions (8). This constant specifies that the meta characters '^' and '$' match only the beginning and end of an input line, respectively. |
const | UnicodeCase | RegexOptions (64). This constant specifies that a Pattern that uses case-insensitive matching will use Unicode case folding. |
const | UnixLines | RegexOptions (1). This constant specifies that a pattern matches Unix line endings ('\n') only against the '.', '^', and '$' meta characters. |
[read-only] static | UnicodeCharacterClass | int. Documentation for this section has not yet been entered. |
[read-only] override | ThresholdClass | IntPtr. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code. |
[read-only] override | ThresholdType | Type. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code. |
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. |