up vote 4 down vote favorite
3
share [g+] share [fb]

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
                ^
link|improve this question
feedback

4 Answers

up vote 16 down vote accepted

The c variable already contains the char code!

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

yields

115
116
114
105
110
103
link|improve this answer
feedback

please refer to this post for the changes in ruby1.9 http://stackoverflow.com/questions/1270209/getting-an-ascii-character-code-in-ruby-fails

link|improve this answer
feedback
"a"[0]

or

?a

Both would return their ASCII equivalent.

link|improve this answer
4  
Did this change in Ruby 1.9 ? – Gishu Nov 12 '09 at 10:12
Yea, in Ruby 1.8 it return the characters ascii value, but it ruby the character at the index in ruby 1.9... – David Jun 27 '10 at 15:22
1  
"a"[0].ord should return the ascii code. Note that it's actually a unicode code. – albert Oct 1 '11 at 7:08
feedback

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|improve this answer
3  
This is no longer true as of Ruby 1.9. – Chuck Mar 3 '09 at 9:19
3  
No reason to vote down a once correct answer. Just comment that it's no longer true and the commenter can remove it. It's actually useful to see that the info no longer works too. – Mike Bethany Oct 28 '10 at 10:08
feedback

Your Answer

 
or
required, but never shown

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