Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ルビーで整数を16進数に変換しようとしていますが、問題があります。\x00 の形式にする必要がありますが、手動で設定しないとできないようです。
count = 5 hex = "\x0#{count}" puts hex.inspect # "\x005" but i need it to be "\x05"
ありがとう!
["\x00".unpack("C").first + count].pack("C")
#ruby @ irc.freenode.net の誰かが答えた