Skip to content

Instantly share code, notes, and snippets.

@JFriel
Created May 30, 2015 16:02
Show Gist options
  • Save JFriel/5210665e4cb01e708d99 to your computer and use it in GitHub Desktop.
Save JFriel/5210665e4cb01e708d99 to your computer and use it in GitHub Desktop.
String rawHTML = ;
Pattern pattern = Pattern.compile("\D\D\d\s\D\d\d");
Matcher matcher = pattern.matcher(rawHTML);
if (matcher.find())
{
System.out.println(matcher.group(1));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment