DEV Community

Maynard Cabalitan
Maynard Cabalitan

Posted on

3 1

How to reverse a string in ruby

You can do this:

 def my_reverse(str)
  str.chars.inject {|a, b| b + a}
 end


 > my_reverse("idol")
 => "lodi"

You can also monkey patch the String object:

 class String
   def my_reverse
     self.chars.inject {|a, b| b + a}
   end
 end

 > "idol".my_reverse
 => "lodi"

and will print the same result :)

Warning: Be extra careful on monkey patching ruby objects.

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay