summaryrefslogtreecommitdiffstats
path: root/src/fluent-bit/lib/onigmo/doc/FAQ
blob: 444753adcaa73b35a7833a2b8a2bbff2b6613894 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
FAQ    2016/11/07

1. Longest match

   You can execute longest match by using ONIG_OPTION_FIND_LONGEST option
   in onig_new().


2. CR + LF

   DOS newline (CR (0x0c) + LF (0x0a) sequence)

   Enable the following line in regenc.h, and use ONIG_OPTION_NEWLINE_CRLF
   option in onig_new().

     /* #define USE_CRNL_AS_LINE_TERMINATOR */


3. Mailing list

   There is no mailing list about Onigmo/Oniguruma.

// END