powered by
Simply, test if a string is uppercase and return TRUE or FALSE
isUpperCase(string)
TRUE or FALSE if the string is all upper case
The string to evaluate
strTest1 <- 'OBI' strTest2 <- 'obiO' isUpperCase(strTest1) isUpperCase(strTest2)
Run the code above in your browser using DataLab