Erlang - binary_to_list



This method is used to convert a binary value to a list.

Syntax

binary_to_list(binaryvalue)

Parameters

  • binaryvalue − This is binary value which needs to be converted to a list.

Return Value

Returns a list.

For example

-module(helloworld). 
-export([start/0]). 

start() -> 
   io:fwrite("~p~n",[binary_to_list(<<2,1>>)]).

Output

When we run the above program we will get the following result.

[2,1]
erlang_binaries.htm
Advertisements