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 fa06e09 commit 2074e1aCopy full SHA for 2074e1a
src/main/java/io/ascending/training/regex/RegexMatches.java
@@ -14,6 +14,9 @@ public static void main( String args[] ) {
14
// System.out.println (Pattern.matches(".",
15
// "3000"));
16
// "/dep/123"
17
+// Pattern p = Pattern.compile("(^\\t\\{)(.*)(\\t\\}$)");
18
+// Matcher m = p.matcher("aaaaab");
19
+// boolean b = m.matches();
20
RegexMatches rm = new RegexMatches();
21
rm.simpleDemo("This order was placed for QT3000! OK?");
22
rm.splitAPIUrl("/dep$test");
0 commit comments