二进制模式匹配到列表
Binary pattern matching into list
我这样做:
<<a :: big-size(16), b :: big-size(16), c :: big-size(16)>> = <<0, 1, 0, 2, 0, 3>>
然后结果将是:
a = 1
b = 2
c = 3
但我真正需要的是:
a = [1, 2, 3]
有什么办法可以实现吗?
不能直接使用模式匹配。您只能匹配整个结构或子结构。您不能将一种结构强制转换为另一种结构。
不过,再写一行代码即可:
<<a :: 16, b :: 16, c :: 16>> = <<0, 1, 0, 2, 0, 3>>
a = [a, b, c] # a equals [1, 2, 3]
或者你可以写一个理解来做到这一点:
a = for <<b :: 16 <- <<0, 1, 0, 2, 0, 3>> >>, do: b
如果我正确阅读了你在 greggreg 的回答中的评论,这是一种方法:
<< size::8, rest::binary>> = <<3,0,25,1,1,2,1,6,4,3>>
<< data::size(size)-unit(16)-binary, rest::binary>> = rest
elements = for << <<element::16>> <- data>>, do: element
# At this point, elements is the list of n 16 bit integers
# (n being the first byte), and rest is the rest of the binary
我这样做:
<<a :: big-size(16), b :: big-size(16), c :: big-size(16)>> = <<0, 1, 0, 2, 0, 3>>
然后结果将是:
a = 1
b = 2
c = 3
但我真正需要的是:
a = [1, 2, 3]
有什么办法可以实现吗?
不能直接使用模式匹配。您只能匹配整个结构或子结构。您不能将一种结构强制转换为另一种结构。
不过,再写一行代码即可:
<<a :: 16, b :: 16, c :: 16>> = <<0, 1, 0, 2, 0, 3>>
a = [a, b, c] # a equals [1, 2, 3]
或者你可以写一个理解来做到这一点:
a = for <<b :: 16 <- <<0, 1, 0, 2, 0, 3>> >>, do: b
如果我正确阅读了你在 greggreg 的回答中的评论,这是一种方法:
<< size::8, rest::binary>> = <<3,0,25,1,1,2,1,6,4,3>>
<< data::size(size)-unit(16)-binary, rest::binary>> = rest
elements = for << <<element::16>> <- data>>, do: element
# At this point, elements is the list of n 16 bit integers
# (n being the first byte), and rest is the rest of the binary