What does [“string”].pack('H*') mean?

假如想象 提交于 2019-11-29 04:21:16
undur_gongor

It interprets the string as hex numbers, two characters per byte, and converts it to a string with the characters with the corresponding ASCII code:

["464F4F"].pack('H*')  # =>  "FOO", 0x46 is the code for 'F', 0x4F the code for 'O'

For the opposite conversion, use unpack:

'FOO'.unpack('H*')     # => ["464f4f"]

It is a little bit more difficult for non-ASCII-8BIT encodings:

"á".encoding                                # => #<Encoding:UTF-8>
"á".unpack('H*')                            # => ["c3a1"]
['c3a1'].pack('H*')                         # => "\xC3\xA1"
['c3a1'].pack('H*').encoding                # => #<Encoding:ASCII-8BIT>
['c3a1'].pack('H*').force_encoding('UTF-8') # => "á"
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!