| Modifier and Type | Field and Description |
|---|---|
static int |
DEFAULT
All the following options turned off, EXCEPT UNICODE.
|
static int |
DOTALL
Affects the behaviour of dot(".") tag.
|
static int |
IGNORE_CASE
Pattern "a" matches both "a" and "A".
|
static int |
IGNORE_SPACES
Affects how the space characters are interpreted in the expression.
|
static int |
MULTILINE
Affects the behaviour of "^" and "$" tags.
|
static int |
UNICODE
Affects whether the predefined classes("\d","\s","\w",etc) in the expression are interpreted as belonging to Unicode.
|
static int |
XML_SCHEMA
Turns on the compatibility with XML Schema regular expressions.
|
static final int DEFAULT
(REFlags.IGNORE_CASE | REFlags.MULTILINE | REFlags.DOTALL).
static final int IGNORE_CASE
static final int MULTILINE
static final int DOTALL
static final int IGNORE_SPACES
static final int UNICODE
static final int XML_SCHEMA
Copyright © 2016. All rights reserved.