static Pattern compileRegexpIC(S pat) { try { ret Pattern.compile(pat, Pattern.CASE_INSENSITIVE); } catch (PatternSyntaxException e) { rethrow(wrapPatternSyntaxException(e)); } }