Module: Aerospike::PredExp::RegexFlags

Defined in:
lib/aerospike/query/pred_exp/regex_flags.rb

Overview

Regex bit flags

Constant Summary collapse

NONE =

Regex defaults

0
EXTENDED =

Use POSIX Extended Regular Expression syntax when interpreting regex.

1
ICASE =

Do not differentiate case.

2
NOSUB =

Do not report position of matches.

4
NEWLINE =

Match-any-character operators don’t match a newline.

8