Open In App

Ruby | String reverse Method

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
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

Last Updated : 08 Jan, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads