Skip to content

Instantly share code, notes, and snippets.

@derekbar90
Last active August 29, 2015 14:07
Show Gist options
  • Save derekbar90/73d6cc8a06ae5d83c763 to your computer and use it in GitHub Desktop.
Save derekbar90/73d6cc8a06ae5d83c763 to your computer and use it in GitHub Desktop.
RegEx example
private String regex(String string){
String result = "";
String patternString = "[0-9][0-9]:[0-9][0-9]:[0-9][0-9]";
Pattern pattern = Pattern.compile(patternString);
Matcher matches = pattern.matcher(string);
while(matches.find()){
result += matches.group(0);
}
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment