startsWithVowel {FastUtils} | R Documentation |
Check if a String Starts with a Vowel
Description
This function checks if a string starts with a vowel.
Usage
startsWithVowel(x)
Arguments
x |
A character string. |
Value
TRUE if the string starts with a vowel, FALSE otherwise.
Examples
# Check if "apple" starts with a vowel
startsWithVowel("apple")
# Check if "banana" starts with a vowel
startsWithVowel("banana")
[Package FastUtils version 0.1.1 Index]