Classes | |
class | wxRegEx |
wxRegEx represents a regular expression. More... | |
Enumerations | |
enum | { wxRE_EXTENDED = 0, wxRE_ADVANCED = 1, wxRE_BASIC = 2, wxRE_ICASE = 4, wxRE_NOSUB = 8, wxRE_NEWLINE = 16, wxRE_DEFAULT = wxRE_EXTENDED } |
enum | { wxRE_NOTBOL = 32, wxRE_NOTEOL = 64 } |
anonymous enum |
Flags for regex compilation to be used with wxRegEx::Compile().
anonymous enum |
Flags for regex matching to be used with wxRegEx::Matches(). These flags are mainly useful when doing several matches in a long string to prevent erroneous matches for '^' and '$':
Enumerator | |
---|---|
wxRE_NOTBOL |
'^' doesn't match at the start of line. |
wxRE_NOTEOL |
'$' doesn't match at the end of line. |