30秒学会 Dart 片段 · 2019年1月12日

30秒学会 Dart 片段 – isUpperCase

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