String translation : String class Extension « String « Ruby
- Ruby
- String
- String class Extension
String translation
class String
def rot13
self.tr("A-Ma-mN-Zn-z","N-Zn-zA-Ma-m")
end
end
joke = "Y2K bug"
joke13 = joke.rot13 # "L2X oht"
Related examples in the same category