vote up 2 vote down star

I would like to build a string from a byte value.

I currently use:

str = " "
str[0] = byte

This seems to work fine but I find it ugly and not very scalable to strings longer than 1 character.

Any idea?

flag

3 Answers

vote up 3 vote down check

There is a much simpler approach than any of the above: Array#pack:

>> [65,66,67,68,69].pack('c*')
=>  "ABCDE"

I believe pack is implemented in c in matz ruby, so it also will be considerably faster with very large arrays.

Also, pack can correctly handle UTF-8 using the 'U*' template.

link|flag
vote up 1 vote down

can't remember if there is a single function that does that:

>> a = [65,66,67]
=> [65, 66, 67]
>> a.map {|x| x.chr}.join
=> "ABC"
link|flag
Nice, did not know about the chr method – Vincent Robert Jun 7 at 0:07
vote up 0 vote down

If bytes is an array of Fixnum's you could try this:

bytes.map {|num| num.chr}.join

or this:

s = ''
bytes.each {|i| s << i}
link|flag

Your Answer

Get an OpenID
or

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