enum CCL::IRegularExpression::Options

Overview

Options. More…

#include <iregexp.h>

enum Options
{
    kCaseInsensitive = 1 < <0,
    kMultiline       = 1 < <1,
    kDotMatchesAll   = 1 < <2,
};

Detailed Documentation

Options.

Enum Values

kCaseInsensitive

perform case-insensitive match

kMultiline

make start/end metacharacters match at start/end of each line

kDotMatchesAll

make dots match all characters, including line breaks