debating on a change to using MULTILINE by default

This commit is contained in:
benfry
2008-05-31 17:01:37 +00:00
parent 2566271856
commit 2693e832dd

View File

@@ -5760,6 +5760,7 @@ in */
*/
static public String[] match(String what, String regexp) {
Pattern p = Pattern.compile(regexp);
//Pattern p = Pattern.compile(regexp, Pattern.MULTILINE);
Matcher m = p.matcher(what);
if (m.find()) {
int count = m.groupCount();