If the "/a" modifier is repeated, then additionally in case-insensitive matching, no ASCII character can match a non-ASCII character. For example, "k" =~ /\N{KELVIN SIGN}/ai "\xDF" =~ /ss/ai match but "k" =~ /\N{KELVIN SIGN}/aai "\xDF" =~ /ss/aai do not match. See...