Options (/i, /x, etc.) do not appear to be covered.
CaryInVictoria opened this issue · 1 comments
CaryInVictoria commented
Is that intentional (or did I miss that)?
k-takata commented
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.