Regex bit flags.
Inheritance Hierarchy
Aerospike.ClientRegexFlag
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.1.1.0 (5.1.1)
Syntax
C#
public sealed class RegexFlag
The RegexFlag type exposes the following members.
Constructors
Name | Description | |
---|---|---|
![]() | RegexFlag | Initializes a new instance of the RegexFlag class |
Fields
Name | Description | |
---|---|---|
![]() ![]() | EXTENDED |
Use POSIX Extended Regular Expression syntax when interpreting regex.
|
![]() ![]() | ICASE |
Do not differentiate case.
|
![]() ![]() | NEWLINE |
Match-any-character operators don't match a newline.
|
![]() ![]() | NONE |
Use regex defaults.
|
![]() ![]() | NOSUB |
Do not report position of matches.
|
See Also