From 2693e832dd973464dc8bbb2f3126bf3f8515bb5a Mon Sep 17 00:00:00 2001 From: benfry Date: Sat, 31 May 2008 17:01:37 +0000 Subject: [PATCH] debating on a change to using MULTILINE by default --- core/src/processing/core/PApplet.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/processing/core/PApplet.java b/core/src/processing/core/PApplet.java index 4632e9a47..cf2fb2efa 100644 --- a/core/src/processing/core/PApplet.java +++ b/core/src/processing/core/PApplet.java @@ -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();