Closed michaelstein closed 12 years ago
Jo. Das ist wohl richtig :)
Änderst du das?
Am 08.03.2012 21:10, schrieb ifmichael:
Das generierte Code Snippet ist nicht ganz richtig:
Matcher m = Pattern.compile("regexp", 0); while(m.find()) { System.out.println(m.group()); }
Sollte aber so aussehen:
Pattern p = Pattern.compile("regexp", 0); Matcher m = p.matcher("String der gematcht werden soll"); while(m.find()) { System.out.println(m.group()); }
Reply to this email directly or view it on GitHub: https://github.com/georf/RegHex/issues/27
Georg Limbach georf@georf.de PGP: http://www.georf.de/user/0xA68E77DB.asc
"Big brother is watching you." (George Orwell)
Das generierte Code Snippet ist nicht ganz richtig:
Sollte aber so aussehen: