Skip to content

Instantly share code, notes, and snippets.

@jeffbowman
Last active August 29, 2015 14:01
Show Gist options
  • Save jeffbowman/168537abeb85da50dae9 to your computer and use it in GitHub Desktop.
Save jeffbowman/168537abeb85da50dae9 to your computer and use it in GitHub Desktop.
ConfluexBlogFunctionExample1
Function<String, Integer> only3PositiveDigits = s -> {
if (!s.matches("\\d{3}") {
return -1;
}
return new Integer(s);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment