El método toUpper() se utiliza para encontrar las mayúsculas del valor del carácter indicado.
Definición del método: def toUpper: Char
Tipo de retorno: Devuelve Char.
Ejemplo 1#
// Scala program of toUpper() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying toUpper() method val result = 'a'.toUpper // Displays output println(result) } }
Producción:
A
Ejemplo: 2#
// Scala program of toUpper() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying toUpper() method val result = 'b'.toUpper // Displays output println(result) } }
Producción:
B
Publicación traducida automáticamente
Artículo escrito por nidhi1352singh y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA