<div>I wouldn't use lists:flatten/1 for iolists because by definition, iolists can also contain binaries. The only safe way, I figure, would be to use iolist_to_binary/1 as the list is a sequence of bytes and binaries.<br>


</div><div><br></div><div>If you want to convert it back to a list, you can use binary_to_list/1 for the example used rightn ow, but you have to be careful in general cases: if you have encoded Unicode (utf-8/16/32) in there, the format will be lost on the final string. This is because Unicode strings as lists directly use codepoint numbers and not a specific encoding to represent various codepoints. In these cases what you want to do is in fact convert the iolist using unicode:characters_to_list/1, which will take care of changing the bytes from a given encoding into the right representation. There is also unicode:characters_to_binary/1 if you need it going that way.</div>


<div><br></div><div>I've got a few more details and examples at <a href="http://ferd.ca/will-the-real-unicode-wrangler-please-stand-up.html" target="_blank">http://ferd.ca/will-the-real-unicode-wrangler-please-stand-up.html</a>. When you want to handle unicode or one of its encodings, you have to be careful in how you handle things; I'd recommend against using lists:flatten to handle io lists (especially when the unicode module itself accepts iolists).</div>


<br><div class="gmail_quote">On Sat, Jan 14, 2012 at 4:22 AM, Michael Uvarov <span dir="ltr"><<a href="mailto:freeakk@gmail.com" target="_blank">freeakk@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">


<div>Don't use internal structure of iolist. It can be changed anytime. It is useful for collecting data together, not for splitting it again. You only can transform the iolist to a list or to a binary.<br> </div><blockquote style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex" class="gmail_quote">



Eshell V5.9  (abort with ^G)<br>1> io_lib:format("~10.6.0f", [7.0]).  <br>[["00",55,46,48,48,48,48,48,48]]<br>2> lists:flatten(io_lib:format("~10.6.0f", [7.0])).<br>"007.000000"<br>



</blockquote><br><br>
<br>_______________________________________________<br>
erlang-questions mailing list<br>
<a href="mailto:erlang-questions@erlang.org" target="_blank">erlang-questions@erlang.org</a><br>
<a href="http://erlang.org/mailman/listinfo/erlang-questions" target="_blank">http://erlang.org/mailman/listinfo/erlang-questions</a><br>
<br></blockquote></div><br>