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