<evalcmd> IsUpper && bool && True if string consists only of uppercase letters. && string && string && String to test. </evalcmd>
Returns True if string consists entirely of uppercase letters, otherwise returns False.
//Example://arrow-up-right
Output(IsUpper("ABCDE")) --> true Output(IsUpper("ABcDE")) --> false
See also: isalpha isdigit islower ispunct isspace
最后更新于2年前