Interconversion between decimal and any other base-n number system
Asked Answered
H

2

7

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

Habitable answered 28/3, 2010 at 6:40 Comment(0)
I
13

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
Independent answered 28/3, 2010 at 8:11 Comment(2)
+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?Habitable
5001.to_s(36).to_i(10) => 3Prue
D
0

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

Dietetic answered 28/3, 2010 at 23:36 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.