aboutsummaryrefslogblamecommitdiffstats
path: root/lib/compiler/test/inline_SUITE_data/comma_splitter.erl
blob: eaa89e0edc0c186008ca8a4a3c90f690e2f7a7db (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                                                   
-module(comma_splitter).
-export([?MODULE/0]).

?MODULE() ->
    {<<"def">>,<<"cba">>} = split_at_comma(<<"abc,   def">>, <<>>),
    ok.

strip_leading_ws(<<N, Rest/binary>>) when N =< $\s ->
    strip_leading_ws(Rest);
strip_leading_ws(B) ->
    B.

split_at_comma(<<>>, Accu) ->
    {<<>>, Accu};
split_at_comma(<<$,, Rest/binary>>, Accu) ->
    {strip_leading_ws(Rest), Accu};
split_at_comma(<<C, Rest/binary>>, Accu) ->
    split_at_comma(Rest, <<C, Accu/binary>>).