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.
如何将该二进制格式转换为此[<<"xys">>,<<"est">>] -> [<<"xys","est">>].
[<<"xys">>,<<"est">>] -> [<<"xys","est">>].
由于 [<<"xys","est">>] 与 [<<"xysest">>] 相同,您可以这样做:
1> [A,B] = [<<"xys">>,<<"est">>]. [<<"xys">>,<<"est">>] 2> [<<A/binary, B/binary>>]. [<<"xysest">>]