isVowel {FastUtils} | R Documentation |
This function checks if a character is a vowel.
isVowel(x)
x |
A character. |
TRUE if the character is a vowel, FALSE otherwise.
# Check if 'a' is a vowel
isVowel("a")
# Check if 'b' is a vowel
isVowel("b")