如何在 Erlang 中读取元组键和值?
我有这个变量:
Params = [<<"TPUIBrowser">>,0,18,
{[{<<"End">>,<<"location-1ÿ">>},{<<"Start">>,<<"location-1">>}]},
null]
我想获得 和 的<<"End">>
值<<"Start">>
。
我怎么能在 Erlang 中做到这一点?
我可以这样做:
[_,_,_,A,_] = Params.
{[{_,B},{_,C}]} = A.
但这感觉非常冗长且容易出错(即当我收到更多参数时)。最好的二郎方式是什么?