Ruby | String reverse Method
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
Please Login to comment...