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?
|
|
|
|
|
|
|
There is a much simpler approach than any of the above: Array#pack:
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. |
|||
|
|
|
|
can't remember if there is a single function that does that:
|
||
|
|
|
If bytes is an array of Fixnum's you could try this:
or this:
|
|||
|
|