El to_s() es un método incorporado en Ruby que devuelve una string que contiene el rango dado.
Sintaxis : range1.to_s()
Parámetros : la función no acepta ningún parámetro.
Valor devuelto : Devuelve una string que contiene el rango.
Ejemplo 1
:
# Ruby program for to_s() # method in Range # Initialize range range1 = (0..4) # Prints the string puts range1.to_s()
Salida :
0..4
Ejemplo 2
:
# Ruby program for to_s() # method in Range # Initialize range range1 = (7..9) # Prints the string puts range1.to_s()
Salida :
7..9