📜  红宝石 |范围 to_s()函数

📅  最后修改于: 2022-05-13 01:54:27.921000             🧑  作者: Mango

红宝石 |范围 to_s()函数

to_s()是 Ruby 中的一个内置方法,它返回一个包含给定范围的字符串。

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

输出

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

输出

7..9