Skip to content

Instantly share code, notes, and snippets.

@abbath0767
Created February 25, 2016 11:10
Show Gist options
  • Save abbath0767/a594320cb6d4d6f4765c to your computer and use it in GitHub Desktop.
Save abbath0767/a594320cb6d4d6f4765c to your computer and use it in GitHub Desktop.
public class Vowels {
public static int getCount(String str) {
int vowelsCount = 0;
vowelsCount = str.length() - str.replaceAll("a|e|i|o|u", "").length();
return vowelsCount;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment