From: Stefan Rusterholz Date: 2007-07-14T05:37:18+09:00 Subject: Re: Base 26 Mike Moore wrote: > Hey friends! What is the best way to convert a Numeric to a string > encoded > with base 26? I want the string to contain just alpha characters, not > alphanumeric characters. For now I'm using num.to_s(26).tr('0-9a-p', > 'a-z') > and I'm wondering if there is a more concise way. > You're looking too far away. int.to_s(26) Regards Stefan -- Posted via http://www.ruby-forum.com/.