Open In App

Ruby | String reverse Method

Last Updated : 08 Jan, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

reverse is a String class method in Ruby which is used to return a new string with the characters from the given string in reverse order.

Syntax: str.reverse

Parameters: Here, str is the string which is to be reversed.

Returns: This method returns a new string in reversed order.

Example 1:




# Ruby program to demonstrate
# the reverse method
   
# Taking a string and
# using the method
puts "GeeksforGeeks".reverse
puts "Ruby".reverse


Output:

skeeGrofskeeG
ybuR

Example 2:




# Ruby program to demonstrate
# the reverse method
   
# Taking a string and
# using the method
puts "String".reverse
puts "Class".reverse


Output:

gnirtS
ssalC

Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads