[97, 98, 99]. yields “abc”, in the Erlang shell. I realize this is because the ASCII values of a, b and c are 97, 98 and 99 respectively.
So.. how would one go about returning [97,98,99] without Erlang translating it to ASCII?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can try
io:format("~w~n", [ListHere]), which should simply avoid interpreting the data.