Open In App

Ruby | Range to_s() function

Improve
Improve
Like Article
Like
Save
Share
Report

The to_s() is an inbuilt method in Ruby returns a string containing the given range.

Syntax: range1.to_s()

Parameters: The function accepts no parameter.

Return Value: It returns a string containing the range.

Example 1:




# Ruby program for to_s() 
# method in Range 
  
# Initialize range 
range1 = (0..4)
  
# Prints the string
puts range1.to_s()


Output:

0..4
Example 2:




# Ruby program for to_s() 
# method in Range 
  
# Initialize range 
range1 = (7..9)
  
# Prints the string
puts range1.to_s()


Output:

7..9

Last Updated : 19 Mar, 2024
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads