We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9517843 commit b7a5b0fCopy full SHA for b7a5b0f
www/test.jsp
@@ -82,8 +82,8 @@
82
83
int flags = 0;
84
if (options.contains("canon")) { flags |= Pattern.CANON_EQ; }
85
- if (options.contains("insensitive")) { flags |= Pattern.CASE_INSENSITIVE; }
86
- if (options.contains("comments")) { flags |= Pattern.COMMENTS; }
+ if (options.contains("ignorecase")) { flags |= Pattern.CASE_INSENSITIVE; }
+ if (options.contains("comment")) { flags |= Pattern.COMMENTS; }
87
if (options.contains("dotall")) { flags |= Pattern.DOTALL; }
88
if (options.contains("multiline")) { flags |= Pattern.MULTILINE; }
89
if (options.contains("unicode")) { flags |= Pattern.UNICODE_CASE; }
0 commit comments