k-takata / Onigmo

Onigmo is a regular expressions library forked from Oniguruma.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Options (/i, /x, etc.) do not appear to be covered.

CaryInVictoria opened this issue · comments

Is that intentional (or did I miss that)?

Those options should be specified with the onig_new() API by the ONIG_OPTION_IGNORECASE or ONIG_OPTION_EXTEND option.
Another way is using the (?i) or (?x) notation.
See doc/API and doc/RE for detail.