vote up 4 vote down star

In many languages there's a pair of functions, chr() and ord(), which convert between numbers and character values. In some languages, ord() is called asc().

Ruby has String#chr, which works great:

>> 65.chr
A

Fair enough. But how do you go the other way?

"A".each_byte do |byte|
   puts byte
end

prints:

65

and that's pretty close to what I want. But I'd really rather avoid a loop -- I'm looking for something short enough to be readable when declaring a const.

flag

4 Answers

vote up 4 vote down check

In Ruby up to and including the 1.8 series, the following will both produce 65 (for ASCII):

puts ?A
'A'[0]

The behavior has changed in Ruby 1.9, both of the above will produce "A" instead. The correct way to do this in Ruby 1.9 is:

'A'[0].ord

Unfortunately, the ord method doesn't exist in Ruby 1.8.

link|flag
It's unfortunate that the "correct" way in Ruby 1.9 is so long, but at least it'll show up easier in searches for "ord". Thanks for your very detailed answer. – RJHunter Nov 22 '08 at 11:30
'A'[0].ord words in ruby 1.8.7 - and thanks for the answer. – Kyle Burton Mar 8 at 15:04
vote up 2 vote down

Try:

'A'.unpack('c')
link|flag
Now that Ruby 1.9 has changed the meaning of 'A'[0], this is the more portable method. – AShelly Nov 22 '08 at 1:11
vote up 1 vote down

How about

puts ?A

link|flag
vote up 0 vote down

Additionally, if you have the char in a string and you want to decode it without a loop:

puts 'Az'[0]
=> 65
puts 'Az'[1]
=> 122
link|flag

Your Answer

Get an OpenID
or

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