!REGEX.DEF [101] - REGEX.SBR (Regular Expression) definitions !VEDIT=100 ![100] February 20, 2008 12:17 PM Edited by Jack ![101] April 15, 2008 12:17 PM Edited by Jack ! Added PCREX_PRECOMPILE !------------------------------------------------------------------------ ! Symbols affecting way patterns are compiled ! Note: more extensive explanations of these options can be found ! at http://www.pcre.org/pcre.txt define PCRE_CASELESS = &h0001 ! case insensitive match (?i) define PCRE_MULTILINE = &h0002 ! support multiline subjects (?m) define PCRE_DOTALL = &h0004 ! dot matches even newlines (?s) define PCRE_EXTENDED = &h0008 ! ignore unescaped whitespace (?x) define PCRE_ANCHORED = &h0010 ! allow anchored matches only define PCRE_DOLLAR_ENDONLY = &h0020 ! match dollar metachar only at end define PCRE_UNGREEDY = &h0200 ! Inverts "greediness" (?u) define PCRE_UTF8 = &h0800 ! Compile for Unicode define PCREX_PRECOMPILE = &h80000000 ! Precompile pattern only