This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class StringUtilities | |
{ | |
/** | |
* Check if input string is a vowel | |
* Author: http://stackoverflow.com/users/1357341/arshajii | |
**/ | |
public static boolean isVowel(String inStr) | |
{ | |
return "aeiou".indexOf(inStr.toLowerCase()) >= 0; | |