I have written some general functions to convert between decimal and any other base-n number system(n<=36 for now) and vice-versa. Don't want to make things messy here so i have posted the code here.

Could anybody suggest any better way for this? May be more effective and Rubyish?

Thanks

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

There's already the to_s method on Numeric and the to_i method on String to convert back:

irb(main):013:0> 10.to_s(36)
=> "a"
irb(main):014:0> "a".to_i(36)
=> 10
link|improve this answer
+1 - Wow!!.. i didn't see it... that's amazing... thanks. But i wasn't looking for that... I was just trying my hands on some usual problems. Do you have any suggestions for refactoring it? – RubyDubee Mar 28 '10 at 10:13
feedback

Check out Rosetta Code: http://rosettacode.org/wiki/Non-decimal_radices/Convert#Ruby

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.