isUpperCase {r2shortcode} | R Documentation |
Simply, test if a string is uppercase and return TRUE or FALSE
isUpperCase(string)
string |
The string to evaluate |
TRUE or FALSE if the string is all upper case
strTest1 <- 'OBI'
strTest2 <- 'obiO'
isUpperCase(strTest1)
isUpperCase(strTest2)