El método toLower() se utiliza para encontrar las minúsculas del valor del carácter indicado.
Definición del método: def toLower: Char
Tipo de retorno: Devuelve Char.
Ejemplo 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) } }
Producción:
a
Ejemplo: 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) } }
Producción:
z
Publicación traducida automáticamente
Artículo escrito por nidhi1352singh y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA