how to convert string to tuple in erlang?
f.e A="{"hi","how"}"
and i want it to converted into
B={"hi","how"}.
when i call function list_to_tuple(A) it gives output as:-{123,60,60,34,106,105,100,34,62,62,44,34,104,105,34,125} rather than {"hi","how"}
You should use erl_scan module to tokenize the string and erl_parse to convert the tokens to a erlang term.