R/spelling.R
isVowel.Rd
This function checks if a character is a vowel.
isVowel(x)
A character.
TRUE if the character is a vowel, FALSE otherwise.
# Check if 'a' is a vowel isVowel("a") #> [1] TRUE # Check if 'b' is a vowel isVowel("b") #> [1] FALSE