Java.Util.Regex.Pattern: Field Members

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

Public Fields

const
CanonEqRegexOptions (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
CaseInsensitiveRegexOptions (2). This constant specifies that a Pattern is matched case-insensitively.
const
CommentsRegexOptions (4). This constant specifies that a Pattern may contain whitespace or comments.
const
DotallRegexOptions (32). This constant specifies that the '.' meta character matches arbitrary characters, including line endings, which is normally not the case.
const
LiteralRegexOptions (16). This constant specifies that the whole Pattern is to be taken literally, that is, all meta characters lose their meanings.
const
MultilineRegexOptions (8). This constant specifies that the meta characters '^' and '$' match only the beginning and end of an input line, respectively.
const
UnicodeCaseRegexOptions (64). This constant specifies that a Pattern that uses case-insensitive matching will use Unicode case folding.
const
UnixLinesRegexOptions (1). This constant specifies that a pattern matches Unix line endings ('\n') only against the '.', '^', and '$' meta characters.