mixed.case | R Documentation |
Checks if strings are all lower case
mixed.case(string)
string |
Character vector of strings to check cases |
Checks if strings are a mix of upper and lower case. This is a wrapper for find.case('text', 'mixed')
. If string is all numbers it returns FALSE.
A vector of TRUE AND FALSE
Jared P. Lander
find.case all.upper
toCheck <- c('BIG', 'little', 'Mixed', 'BIG WITH SPACE', 'little with space', 'MIXED with SPACE')
mixed.case(toCheck)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.