📜  带有示例的 Scala String toUpperCase() 方法

📅  最后修改于: 2022-05-13 01:54:22.724000             🧑  作者: Mango

带有示例的 Scala String toUpperCase() 方法

toUpperCase()方法用于将所述字符串的所有字符转换为大写。

示例:1#

// Scala program of toUpperCase()
// method
  
// Creating object
object GfG
{ 
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying toUpperCase method
        val result = "GeeksforGeeks".toUpperCase()
          
        // Displays output
        println(result)
      
    }
} 
输出:
GEEKSFORGEEKS

示例:2#

// Scala program of toUpperCase()
// method
  
// Creating object
object GfG
{ 
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying toUpperCase method
        val result = "nid#!".toUpperCase()
          
        // Displays output
        println(result)
      
    }
} 
输出:
NID#!