clear es un método de clase String en Ruby que se usa para hacer que la string quede vacía.
Sintaxis: str.clear
Parámetros: Aquí, str es la string dada.
Retorno: una string vacía.
Ejemplo 1:
# Ruby program to demonstrate # the clear method # Taking a string and # using the method puts "String".clear puts "Class".clear
Producción:
Ejemplo 2:
# Ruby program to demonstrate # the clear method # Taking a string and # using the method puts "".clear puts "Ruby".clear
Producción:
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA