Checks if a string is upper case.
Convert the given string to upper case, using String.toUpperCase()
and compare it to the original.
代码实现
bool isUpperCase(String str) {
return str == str.toUpperCase();
}
使用样例
isUpperCase('ABC'); // true
isUpperCase('A3@$'); // true
isUpperCase('aB4'); // false