powered by
Checks if strings are all upper case
upper.case(string)
Character vector of strings to check cases
A vector of TRUE AND FALSE
Checks if strings are all upper case. This is a wrapper for find.case('text', 'upper'). If string is all numbers it returns TRUE.
find.case('text', 'upper')
find.case lower.case mixed.case numeric.case
# NOT RUN { toCheck <- c('BIG', 'little', 'Mixed', 'BIG WITH SPACE', 'little with space', 'MIXED with SPACE') upper.case(toCheck) # }
Run the code above in your browser using DataLab