You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
>> /(?:\u{149})a/ui =~ "[\u{2bc}na]" # Unicode case-folding match is in effect.
=> 1
>> /(?<=\u{149})a/ui =~ "[\u{2bc}na]" # But look-behind does not take account of it.
=> nil
Originally reported in #17 (comment) .