Skip to content

Instantly share code, notes, and snippets.

@henri-tremblay
Created August 27, 2015 19:52
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 henri-tremblay/3ee4eb75988cb5e6279c to your computer and use it in GitHub Desktop.
Save henri-tremblay/3ee4eb75988cb5e6279c to your computer and use it in GitHub Desktop.
StringToCharToString
String str =
"allo".chars()
.filter(s -> s != 'l')
.mapToObj(String::valueOf)
.collect(Collectors.joining());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment