The fields 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
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. |