Skip to content

Instantly share code, notes, and snippets.

@matthung0807
Created July 31, 2017 07:34
Show Gist options
  • Save matthung0807/257335a9dcc77e6677c55c776c126a98 to your computer and use it in GitHub Desktop.
Save matthung0807/257335a9dcc77e6677c55c776c126a98 to your computer and use it in GitHub Desktop.
String regex = "^he";
String s = new String("hello world");
Pattern p = Pattern.compile(regex);
Matcher m = p.matcher(s);
System.out.println(m.find()); // => false
System.out.println(m.find()); // => true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment