rot13 加密算法

class String
  def rot13
    self.tr "A-Za-z", "N-ZA-Mn-za-m"
  end
end

#用法 : print 'abcd'.rot13

编程技巧