on erl command shell,<br>A=list_to_binary("abc").<br>B=list_to_binary("def").<br>i want A+B convert to <<"abcdef">><br>now i need do it as below:<br>list_to_binary(binary_to_list(A)++binary_to_list(B)).<br>
<br><<"abcdef">><br><br>is there a simple method make A+B in binary type?<br><br>