2014-03-23 19:40:19 +00:00
|
|
|
---
|
|
|
|
layout: post
|
|
|
|
title: Joining a List of Binaries in Erlang
|
|
|
|
description: "Description and implementation of a function that joins a list of binaries."
|
2014-03-25 21:25:15 +00:00
|
|
|
date: 2014-02-16 15:30:00 CET
|
2014-03-23 21:16:41 +00:00
|
|
|
category: posts
|
2014-03-23 19:40:19 +00:00
|
|
|
tags: [erlang, programming, english]
|
|
|
|
comments: true
|
|
|
|
---
|
|
|
|
|
|
|
|
The binary module in Erlang provides an easy way to split binaries using `split/2,3`, but what if you want to join a list of binaries back together?
|
|
|
|
|
|
|
|
There is no built-in function to do this, so I've decided to write my own.
|
|
|
|
|
2014-11-30 20:47:18 +00:00
|
|
|
{% highlight erlang %}
|
2014-03-23 19:40:19 +00:00
|
|
|
-spec binary_join([binary()], binary()) -> binary().
|
|
|
|
binary_join([], _Sep) ->
|
|
|
|
<<>>;
|
|
|
|
binary_join([Part], _Sep) ->
|
|
|
|
Part;
|
2014-07-14 19:32:28 +00:00
|
|
|
binary_join([Head|Tail], Sep) ->
|
|
|
|
lists:foldl(fun (Value, Acc) -> <<Acc/binary, Sep/binary, Value/binary>> end, Head, Tail).
|
2014-03-23 19:40:19 +00:00
|
|
|
{% endhighlight %}
|
|
|
|
|
|
|
|
It works just like you would expect:
|
|
|
|
|
|
|
|
{% highlight erlang %}
|
|
|
|
binary_join([<<"Hello">>, <<"World">>], <<", ">>) % => <<"Hello, World">>
|
|
|
|
binary_join([<<"Hello">>], <<"...">>) % => <<"Hello">>
|
|
|
|
{% endhighlight %}
|
|
|
|
|
|
|
|
Hope you find this useful!
|