<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Tahoma
}
--></style>
</head>
<body class='hmmessage'>
You're just going to have to do it yourself:<div><br></div><div>{{Year, Month, Day}, {Hour, Minute, Second}} = erlang:universaltime(), %% Or erlang:localtime()</div><div>Y = erlang:integer_to_list(Year),</div><div>...</div><div>Formatted_date = lists:concat([Y, "-", Mo, "-", D, " ", H, ":", Mi, ":", S, ".", Whatever_else_here]),</div><div>...</div><div><br></div><div>Not saying that is the most efficient way to do it but it would get you what you are looking for.</div><div><br></div><div>Chris Hicks.<br><br>> From: joelr1@gmail.com<br>> Date: Mon, 13 Jun 2011 20:30:11 +0400<br>> To: qrilka@gmail.com<br>> CC: erlang-questions@erlang.org<br>> Subject: Re: [erlang-questions] formatting timestamps<br>> <br>> <br>> On Jun 13, 2011, at 8:08 PM, Kirill Zaborsky wrote:<br>> <br>> > Maybe https://github.com/daleharvey/dh_date will do the trick?<br>> <br>> I don't think so, e.g.<br>> <br>> %% This module formats erlang dates in the form<br>> %% {{Year, Month, Day}, {Hour, Minute, Second}}<br>> <br>> --------------------------------------------------------------------------<br>> - for hire: mac osx device driver ninja, kernel extensions and usb drivers<br>> ---------------------+------------+---------------------------------------<br>> http://wagerlabs.com | @wagerlabs | http://www.linkedin.com/in/joelreymont<br>> ---------------------+------------+---------------------------------------<br>> <br>> <br>> <br>> _______________________________________________<br>> erlang-questions mailing list<br>> erlang-questions@erlang.org<br>> http://erlang.org/mailman/listinfo/erlang-questions<br></div>                                    </body>
</html>