NBRegexCaseOptions
enum NBRegexCaseOptions {}
正規表現検索時のオプション
-
Option指定無し
Declaration
Objective-C
NBRegexCaseNone = 0Swift
static var none: NBRegexCaseOptions { get } -
大文字と小文字を区別しない。
Declaration
Objective-C
NBRegexCaseInsensitivity = 1 << 0Swift
static var insensitivity: NBRegexCaseOptions { get } -
文字列を複数行として扱う。
Declaration
Objective-C
NBRegexCaseMultiLine = 1 << 1Swift
static var multiline: NBRegexCaseOptions { get } -
拡張正規表現を使用する。
Declaration
Objective-C
NBRegexCaseExtended = 1 << 2Swift
static var extended: NBRegexCaseOptions { get } -
正規表現の.が改行にもマッチする。
Declaration
Objective-C
NBRegexCaseDotMultiLine = 1 << 3Swift
static var dotMultiline: NBRegexCaseOptions { get }
NBRegexCaseOptions Enumeration Reference