mirror of
https://github.com/processing/processing4.git
synced 2026-02-13 10:30:44 +01:00
debating on a change to using MULTILINE by default
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user