简体   繁体   中英

how to extract the 4 bytes of a 32bit int in lua

I have a lua function that converts ip addresses to 32 bit int

local str = "127.0.0.1"
local o1,o2,o3,o4 = str:match("(%d%d?%d?)%.(%d%d?%d?)%.(%d%d?%d?)%.(%d%d?%d?)" )
local num = 2^24*o1 + 2^16*o2 + 2^8*o3 + o4

I would like to have the inverse function, ie get the 4 bytes from the int

You can use bit or bit32 libraries (included in Lua 5.2+ and LuaJIT and available as modules for 5.1). You can also use the reverse operations to what you already have:

print(math.floor(num / 2^24), math.floor((num % 2^24) / 2^16),
  math.floor((num % 2^16) / 2^8), num % 2^8)

使用string.unpack / pack将大多数原始类型转换为字节数组(Lua中的字符串)。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM