Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a string containing byte data.
How can I perform an in-place conversion to ascii string?

share|improve this question
It is a bit vague... – Keltia Feb 5 '09 at 11:35
1  
What sort of an ascii string do you want to see? A bit string ("0101110110"), hex ("0AFC43"), or just something marshalled into ascii to decode somewhere else? – Brent.Longborough Feb 5 '09 at 14:32

2 Answers

up vote 7 down vote accepted

Another way to play with binary data is String#unpack.

share|improve this answer
1  
Thanks - unpack('H*') did the job. – LK. Feb 5 '09 at 15:20

You can do so via using base64 which is a fairly universal way.

require 'base64'

str = Base64.encode64(data)
share|improve this answer
data needs to be convertible to String for this to work. Try, for example: irb(main):002:0> Base64.encode64(1234) TypeError: can't convert Fixnum into String – Brent.Longborough Feb 5 '09 at 14:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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