From: Mike Moore Date: 2007-07-14T05:20:46+09:00 Subject: Base 26 ------=_Part_24136_32755706.1184358047831 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline 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. Thanks, ~Mike http://blowmage.com/ http://rubiverse.com/ http://humanecode.com/ http://mtnwestruby.org/ ------=_Part_24136_32755706.1184358047831--