Skip to content

Instantly share code, notes, and snippets.

@dnorton
Created April 16, 2014 20:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dnorton/10930147 to your computer and use it in GitHub Desktop.
Save dnorton/10930147 to your computer and use it in GitHub Desktop.
Fun with Java 8 Streams
Stream<String> sortedWords = Stream.of("The quick brown dog jumped".split("[\\P{L}]+")).sorted();
sortedWords.forEach(System.out::println);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment