带有示例的 Scala Char toLower() 方法
toLower()方法用于查找指定字符值的小写字母。
Method Definition: def toLower: Char
Return Type: It returns Char.
示例:1#
// Scala program of toLower()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying toLower() method
val result = 'A'.toLower
// Displays output
println(result)
}
}
输出:
a
示例:2#
// Scala program of toLower()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying toLower() method
val result = 'Z'.toLower
// Displays output
println(result)
}
}
输出:
z