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

📅  最后修改于: 2023-12-03 15:25:28.913000             🧑  作者: Mango

Scala String toLowerCase() 方法

在 Scala 中,toLowerCase() 是字符串类的一个方法,用于将字符串中所有的大写字母转换成小写字母。

语法

下面是 toLowerCase() 方法的语法:

def toLowerCase(): String

该方法不需要参数,返回值为一个新的字符串。

示例

下面是一个示例程序,演示了如何使用 toLowerCase() 方法转换字符串的大小写:

object Example {
   def main(args: Array[String]) {
      val str1 = "This is a STRING test."
      val str2 = "This is another string test."
      
      println("原始字符串: " + str1)
      println("转换后的字符串: " + str1.toLowerCase())
      
      println("原始字符串: " + str2)
      println("转换后的字符串: " + str2.toLowerCase())
   }
}

输出结果为:

原始字符串: This is a STRING test.
转换后的字符串: this is a string test.
原始字符串: This is another string test.
转换后的字符串: this is another string test.

可以看到,所有的大写字母都已转换成了小写字母。

总结

toLowerCase() 方法是 Scala 字符串类的一个方法,通过该方法可以将字符串中的大写字母转换成小写字母。本文介绍了该方法的语法和示例,希望对 Scala 开发者有所帮助。