rot13 加密算法 2015/03/10 14008 class String def rot13 self.tr "A-Za-z", "N-ZA-Mn-za-m" end end #用法 : print 'abcd'.rot13