powered by
Checks if strings are all lower case
mixed.case(string)
Character vector of strings to check cases
A vector of TRUE AND FALSE
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.
find.case('text', 'mixed')
find.case all.upper
# NOT RUN { toCheck <- c('BIG', 'little', 'Mixed', 'BIG WITH SPACE', 'little with space', 'MIXED with SPACE') mixed.case(toCheck) # }
Run the code above in your browser using DataLab