Ruby 字符串 reverse方法
reverse 是Ruby中的一个字符串类方法,用于返回一个新的字符串,该字符串中的字符按相反的顺序排列。
语法: str.reverse
参数: 这里,str是要反转的字符串。
返回: 该方法返回一个顺序相反的新字符串。
例子 1 :
# Ruby program to demonstrate
# the reverse method
# Taking a string and
# using the method
puts "GeeksforGeeks".reverse
puts "Ruby".reverse
输出
skeeGrofskeeG
ybuR
例2 :
# Ruby program to demonstrate
# the reverse method
# Taking a string and
# using the method
puts "String".reverse
puts "Class".reverse
输出
gnirtS
ssalC