vote up 53 vote down star
75

Given a specific DateTime value, how do I display relative time, like

  • 2 hours ago
  • 3 days ago
  • a month ago

etc, etc...?

flag
2  
What if you want to calculate a relative time from now to Future? – Jhonny D. Cano -Leftware- Mar 26 at 20:42

32 Answers

prev 1 2
vote up 3 vote down

@jeff

IMHO yours seems a little long. However it does seem a little more robust with support for "yesterday" and "years". But in my experience when this is used the person is most likely to view the content in the first 30 days. It is only the really hardcore people that come after that. So that is why I usually elect to keep this short and simple.

This is the method I am currently using on one of my websites. This only returns a relative day, hour, time. And then the user has to slap on "ago" in the output.

public static string ToLongString(this TimeSpan time)
{
string output = String.Empty;

if (time.Days > 0)
output += time.Days + " days ";

if ((time.Days == 0 || time.Days == 1) && time.Hours > 0)
output += time.Hours + " hr ";

if (time.Days == 0 && time.Minutes > 0)
output += time.Minutes + " min ";

if (output.Length == 0)
output += time.Seconds + " sec";

return output.Trim();
}
link|flag
vote up 36 vote down

Well, here's how we do it on Stack Overflow.

var ts = new TimeSpan(DateTime.UtcNow.Ticks - dt.Ticks);
double delta = ts.TotalSeconds;

if (delta < 60)
{
  return ts.Seconds == 1 ? "one second ago" : ts.Seconds + " seconds ago";
}
if (delta < 120)
{
  return "a minute ago";
}
if (delta < 2700) // 45 * 60
{
  return ts.Minutes + " minutes ago";
}
if (delta < 5400) // 90 * 60
{
  return "an hour ago";
}
if (delta < 86400) // 24 * 60 * 60
{
  return ts.Hours + " hours ago";
}
if (delta < 172800) // 48 * 60 * 60
{
  return "yesterday";
}
if (delta < 2592000) // 30 * 24 * 60 * 60
{
  return ts.Days + " days ago";
}
if (delta < 31104000) // 12 * 30 * 24 * 60 * 60
{
  int months = Convert.ToInt32(Math.Floor((double)ts.Days / 30));
  return months <= 1 ? "one month ago" : months + " months ago";
}
int years = Convert.ToInt32(Math.Floor((double)ts.Days / 365));
return years <= 1 ? "one year ago" : years + " years ago";

Suggestions? Comments? Ways to improve this algorithm?

link|flag
7  
"< 48*60*60s" is a rather unconventional definition for "yesterday". If it's 9am on Wednesday, would you really think of 9:01am on Monday as "yesterday". I'd have thought an algorithm for yesterday or "n days ago" should consider before/after midnight. – Joe Feb 1 at 19:33
7  
Compilers are usually pretty good at pre-calculating constant expressions, like 24 * 60 * 60, so you can directly use those instead of calculating it yourself to be 86400 and putting the original expression in comments – zvolkov Jun 11 at 12:50
show 1 more comment
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.