📜  Dart – String toUpperCase()函数示例

📅  最后修改于: 2021-09-02 05:05:55             🧑  作者: Mango

字符串 toUpperCase()方法将字符串的所有字符转换为大写字母。 字符串 toUpperCase()函数返回将字符串的所有字符转换为大写字母后的字符串。

示例 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