Skip to content

Instantly share code, notes, and snippets.

@aniketmlk6
Created July 2, 2021 01:19
Show Gist options
  • Save aniketmlk6/da9cf95b046cc2ec23f418a84f3ecae3 to your computer and use it in GitHub Desktop.
Save aniketmlk6/da9cf95b046cc2ec23f418a84f3ecae3 to your computer and use it in GitHub Desktop.
public static void main(String[] args) {
String input = "Java is awesome";
int count = (int) input.chars().filter(ch -> ch!=' ').count();
System.out.println("Total characters without spaces : " + count);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment