vote up 1 vote down star

Hi, this wiki page gave a general idea of how to convert a single char to ascii http://en.wikibooks.org/wiki/Ruby_Programming/ASCII

But say if I have a string and I wanted to get each character's ascii from it, what do i need to do?

"string".each_byte do |c|
      $char = c.chr
      $ascii = ?char
      puts $ascii
end

It doesn't work because it's not happy with the line $ascii = ?char

syntax error, unexpected '?'
      $ascii = ?char
                ^
flag

4 Answers

vote up 5 vote down check

The c variable already contains the char code!

"string".each_byte do |c|
    puts c
end

yields

115
116
114
105
110
103
link|flag
vote up 0 vote down

oh right! stupid me, thanks!

link|flag
vote up 0 vote down
"a"[0]

or

?a

Both would return their ASCII equivalent.

link|flag
Did this change in Ruby 1.9 ? – Gishu Nov 12 at 10:12
vote up -1 vote down

I came accross this when trying to figure out how to get a single ascii value. It was stupidly easy and I feel dumb for having to look it up but I'll post for others.

You just use the [] operator, ie:

irb(main):001:0> "string"[0] => 115

link|flag
1  
This is no longer true as of Ruby 1.9. – Chuck Mar 3 at 9:19

Your Answer

Get an OpenID
or

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