Ask a Question related to Ruby, Design and Development.

  1. #1

    Default Base of Numbers

    Hello Folks!

    I just wanted to know if there's any way except "printf"
    to print out (or convert to string) a number using a
    different base than 10.

    There's "to_s()" for Integers taking a base, but is there
    anything within the "#{i}"-syntax, within the contructors
    or within the language?

    ... anything except printf that allows me to change the
    base of a number?


    Thanks,

    --
    Volker Grabsch
    ---<<(())>>---
    \frac{\left|\vartheta_0\times\{\ell,\kappa\in\Re\} \right|}{\sqrt
    [G]{-\Gamma(\alpha)\cdot\mathcal{B}^{\left[\oint\!c_\hbar\right]}}}
    Volker Grabsch Guest

  2. Similar Questions and Discussions

    1. find country base on ip
      Hey Paul, Love this CFC. :) A couple questions I'm anticipating having to answer include, how often is the database updated and by what...
    2. Data Base Connection
      Hi! I will Know what I do for connect director with MySQL database. I Know xtras like ADO, But this is limited to remote only databasing while it...
    3. Base conversion
      How exactly would you convert to/from a specific, arbitrary base (in this case, 54)?
    4. Data Base Select
      I have an ActiveX control and some data base results on the same web page. I want to respond to an event and change the results from the data base...
    5. web base image app
      hi, im looking for an online graphics app. if at all possible i dont want to have to build it from scratch but i do want to be able to...
  3. #2

    Default Base of Numbers

    Sorry, small self-correction:

    In article <bdurb0$3o4$01$1@news.t-online.com>, Volker Grabsch wrote:
    > Hello Folks!
    >
    > I just wanted to know if there's any way except "printf"
    > to print out (or convert to string) a number using a
    > different base than 10.
    >
    > There's "to_s()" for Integers taking a base, but is there
    <no>
    > anything within the "#{i}"-syntax, within the contructors
    > or within the language?
    >
    > .. anything except printf that allows me to change the
    > base of a number?
    >
    >
    > Thanks,
    Well, this makes more sense ...

    --
    Volker Grabsch
    ---<<(())>>---
    \frac{\left|\vartheta_0\times\{\ell,\kappa\in\Re\} \right|}{\sqrt
    [G]{-\Gamma(\alpha)\cdot\mathcal{B}^{\left[\oint\!c_\hbar\right]}}}
    Volker Grabsch Guest

  4. #3

    Default Re: Base of Numbers

    >>>>> "V" == Volker Grabsch <volker_grabsch@v.notjusthosting.com> writes:
    >> There's "to_s()" for Integers taking a base, but is there
    V> <no>

    In 1.8, #to_s can take an argument

    svg% ruby -e 'p 12.to_s(16); p 12.to_s(12)'
    "c"
    "10"
    svg%
    >> .. anything except printf that allows me to change the
    >> base of a number?
    perhaps #sprintf ???


    Guy Decoux



    ts Guest

  5. #4

    Default Re: Base of Numbers

    Hi,

    At Thu, 3 Jul 2003 07:25:30 +0900,
    Josef 'Jupp' Schugt wrote:
    > to_s works for any basis from 2 to 36 using these digits:
    >
    > 0, 1, 2, 3, 4, 5, 6, 7, 8, 0, a, b, c, d, e, f, g, h,
    > i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z
    Also String#to_i.

    $ grep -w 36 sample/test.rb
    test_ok("Just".to_i(36) == 926381)
    test_ok("-another".to_i(36) == -23200231779)
    test_ok(1299022.to_s(36) == "ruby")
    test_ok(-1045307475.to_s(36) == "-hacker")
    test_ok("Just_another_Ruby_hacker".to_i(36) == 265419172580680477752431643787347)
    test_ok(-265419172580680477752431643787347.to_s(36) == "-justanotherrubyhacker")

    --
    Nobu Nakada

    Nobuyoshi Nakada Guest

  6. #5

    Default Re: Base of Numbers

    On Wed, 2003-07-02 at 17:25, Josef 'Jupp' Schugt wrote:
    > Saluton!
    >
    > * Dave Thomas; 2003-07-02, 20:26 UTC:
    > > This is a test 'ri'. Please report errors and omissions
    > > on [url]http://www.rubygarden.org/ruby?RIOnePointEight[/url]
    > >
    > > ------------------------------------------------------------ Fixnum#to_s
    > > fix.to_s( base=10 ) -> aString
    > >
    > > ------------------------------------------------------------------------
    > > Returns a string containing the representation of fix radix base
    > > (2, 8, 10, or 16).
    > > 12345.to_s #=> "12345"
    > > 12345.to_s(2) #=> "11000000111001"
    > > 12345.to_s(8) #=> "30071"
    > > 12345.to_s(10) #=> "12345"
    > > 12345.to_s(16) #=> "3039"
    >
    > to_s works for any basis from 2 to 36 using these digits:
    >
    > 0, 1, 2, 3, 4, 5, 6, 7, 8, 0, a, b, c, d, e, f, g, h,
    > i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z
    >
    > Gis,
    >
    > Josef 'Jupp' Schugt

    Cool. Is there a way to from a string to an int with any base?

    --
    Tom Felker <tcfelker@mtco.com>


    Tom Felker Guest

  7. #6

    Default Re: Base of Numbers

    Hello,
    > |Cool. Is there a way to from a string to an int with any base?
    >
    > String#to_s(base=10)
    or

    String#to_i(base=10)?

    % ruby -ve 'puts "100".to_i(base=16)'
    ruby 1.8.0 (2003-07-02) [i686-linux]
    256

    Best regards,
    zunda

    zunda Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139