diff options
Diffstat (limited to 'doc/API')
| -rw-r--r-- | doc/API | 12 | 
1 files changed, 11 insertions, 1 deletions
| @@ -1,4 +1,4 @@ -Oniguruma API  Version 6.1.0  2016/08/22 +Oniguruma API  Version 6.6.0  2017/08/15  #include <oniguruma.h> @@ -83,6 +83,16 @@ Oniguruma API  Version 6.1.0  2016/08/22        ONIG_OPTION_DONT_CAPTURE_GROUP only named group captured.        ONIG_OPTION_CAPTURE_GROUP      named and no-named group captured. +      ONIG_OPTION_WORD_IS_ASCII      ASCII only word (\w, \p{Word}, [[:word:]]) +                                     ASCII only word bound (\b) +      ONIG_OPTION_DIGIT_IS_ASCII     ASCII only digit (\d, \p{Digit}, [[:digit:]]) +      ONIG_OPTION_SPACE_IS_ASCII     ASCII only space (\s, \p{Space}, [[:space:]]) +      ONIG_OPTION_POSIX_IS_ASCII     ASCII only POSIX properties +                                     (includes word, digit, space) +                                     (alnum, alpha, blank, cntrl, digit, graph, +                                      lower, print, punct, space, upper, xdigit, +                                      word) +    5 enc:        character encoding.        ONIG_ENCODING_ASCII         ASCII | 
