字符串 toUpperCase()方法将字符串的所有字符转换为大写字母。 字符串 toUpperCase()函数返回将字符串的所有字符转换为大写字母后的字符串。
Syntax: Str.toUpperCase()
Parameter: The string toUpperCase() function doesn’t accept any parameter.
Return Value: The string toUpperCase() function returns the string after
converting all characters of the string into the uppercase letter.
示例 1:
Dart
void main() {
// str1 stores the string "geeks"
String Str1 = "geeks";
// str2 stores the string "fOr GEeks"
String Str2 = "fOr GEeks";
// print str1 in uppercase letter
print(Str1.toUpperCase());
// print str2 in uppercase letter
print(Str2.toUpperCase());
}
Dart
void main() {
// str1 stores the string "COMPUTER"
String Str1 = "COMPUTER";
// str2 stores the string "laPToP"
String Str2 = "laPToP";
// print str1 in uppercase letter
print(Str1.toUpperCase());
// print str2 in uppercase letter
print(Str2.toUpperCase());
}
输出:
GEEKS
FOR GEEKS
示例 2:
Dart
void main() {
// str1 stores the string "COMPUTER"
String Str1 = "COMPUTER";
// str2 stores the string "laPToP"
String Str2 = "laPToP";
// print str1 in uppercase letter
print(Str1.toUpperCase());
// print str2 in uppercase letter
print(Str2.toUpperCase());
}
输出:
COMPUTER
LAPTOP