%%%------------------------------------------------------------------- %%% @author cheese %%% @copyright (C) 2016, %%% @doc %%% %%% @end %%% Created : 27. May 2016 9:49 %%%------------------------------------------------------------------- -module(json_utilites). -author("cheese"). %% API -export([get_object_from_json/2]). get_object_from_json([{ParamName, Value} | _OtherJson], ParamName) -> Value; get_object_from_json([{_Name, _Value} | OtherJson], ParamName) -> get_object_from_json(OtherJson, ParamName); get_object_from_json(_Other, _ParamName) -> undefined.