「rubyの入門」rot13 暗号化アルゴリズムを実現するサンプルプログラム

rubyコード:
class String
def rot13
self.tr “A-Za-z", “N-ZA-Mn-za-m"
end
end

#説明 : print 'abcd’.rot13

Ruby

Posted by arkgame