Here is a good resource on learning Erlang, please read it <a href="http://learnyousomeerlang.com/content">http://learnyousomeerlang.com/content</a><br><br>When you know what function you need to use but want to change some minor behaviour check the documentation for it <a href="http://erldocs.com/">http://erldocs.com/</a> has a good search function for finding the documentation for most Erlang functions.<br>

<br><div class="gmail_quote">On Wed, Nov 14, 2012 at 5:31 PM, Artem Teslenko <span dir="ltr"><<a href="mailto:ates@ipv6.dp.ua" target="_blank">ates@ipv6.dp.ua</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

Use ~s instead of ~p in the format argument of io:format/2:<br>
<br>
1> io:format("~s~n", ["2012/04/23"]).<br>
2012/04/23<br>
<div class="HOEnZb"><div class="h5"><br>
On Wed, 14 Nov 2012, Lucky wrote:<br>
<br>
> Hi Erlang Developers'<br>
><br>
> I'm stuck here, I am trying to print date which is in this format "2012/04/23" using io:format/2, but I want it to be printed like this: 2012/04/23 without invited commas, how do I go about resolving this?<br>


><br>
> Kindest Regards,<br>
> Lucky<br>
><br>
> To God Alone be the Glory...Amen.<br>
> _______________________________________________<br>
> erlang-questions mailing list<br>
> <a href="mailto:erlang-questions@erlang.org">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>
erlang-questions mailing list<br>
<a href="mailto:erlang-questions@erlang.org">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>
</div></div></blockquote></div><br>