public final class NSRegularExpressionOptions
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
static long |
AllowCommentsAndWhitespace
Ignore whitespace and #-prefixed comments in the pattern.
|
static long |
AnchorsMatchLines
Allow ^ and $ to match the start and end of lines.
|
static long |
CaseInsensitive
Match letters in the pattern independent of case.
|
static long |
DotMatchesLineSeparators
Allow .
|
static long |
IgnoreMetacharacters
Treat the entire pattern as a literal string.
|
static long |
UseUnicodeWordBoundaries
Use Unicode TR#29 to specify word boundaries (otherwise, traditional regular expression word boundaries are used).
|
static long |
UseUnixLineSeparators
Treat only \n as a line separator (otherwise, all standard line separators are used).
|
public static final long CaseInsensitive
public static final long AllowCommentsAndWhitespace
public static final long IgnoreMetacharacters
public static final long DotMatchesLineSeparators
public static final long AnchorsMatchLines
public static final long UseUnixLineSeparators
public static final long UseUnicodeWordBoundaries