isVowel {FastUtils}R Documentation

Check if a Character is a Vowel

Description

This function checks if a character is a vowel.

Usage

isVowel(x)

Arguments

x

A character.

Value

TRUE if the character is a vowel, FALSE otherwise.

Examples

# Check if 'a' is a vowel
isVowel("a")
# Check if 'b' is a vowel
isVowel("b")

[Package FastUtils version 0.1.1 Index]