Skip to content

Instantly share code, notes, and snippets.

@matthung0807
Created July 31, 2017 07:22
Show Gist options
  • Save matthung0807/dc4c05a7cc19bc27773edb569d66652f to your computer and use it in GitHub Desktop.
Save matthung0807/dc4c05a7cc19bc27773edb569d66652f 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.matches()); // => 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