Skip to content

Commit 2074e1a

Browse files
author
ryo
committed
update regex
1 parent fa06e09 commit 2074e1a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/main/java/io/ascending/training/regex/RegexMatches.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ public static void main( String args[] ) {
1414
// System.out.println (Pattern.matches(".",
1515
// "3000"));
1616
// "/dep/123"
17+
// Pattern p = Pattern.compile("(^\\t\\{)(.*)(\\t\\}$)");
18+
// Matcher m = p.matcher("aaaaab");
19+
// boolean b = m.matches();
1720
RegexMatches rm = new RegexMatches();
1821
rm.simpleDemo("This order was placed for QT3000! OK?");
1922
rm.splitAPIUrl("/dep$test");

0 commit comments

Comments
 (0)