Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do you truncate the seconds bit from a timespan object in C#? i.e. 15:37

I'm outputting a timespan object to JavaScript in the format of HH:mm and kind of want the server side to process providing the correct format instead of clients browsers, can that be done without providing this as a C# string object to JavaScript?

share|improve this question
If you're formatting the timespan as HH:mm aren't the seconds already truncated? – Chris Pebble Feb 24 '11 at 22:46
Do you really want to set the seconds to 0 in a TimeSpan, or just omit them when converting to string? – CodesInChaos Feb 24 '11 at 22:46
Have a look at this answer stackoverflow.com/questions/338658/… – Will Dean Feb 24 '11 at 22:52
@CodeInChaos @fredrik-mork @Nick Yes omit the seconds without converting to string, my JSON serializer will need to get hh:mm in TimeSpan format without converting to String – Maya Feb 24 '11 at 22:53
1  
@Maya: a TimeSpan is a value, not a string representation of a value. If you need it in a specific format, you will need to convert it to a string. – Fredrik Mörk Feb 24 '11 at 23:04
show 1 more comment

4 Answers

up vote 2 down vote accepted

You can truncate the 'ticks' value which is the core of a TimeSpan:

TimeSpan t1 = TimeSpan.FromHours(1.551);
Console.WriteLine(t1);
TimeSpan t2 = new TimeSpan(t1.Ticks - (t1.Ticks % 600000000));
Console.WriteLine(t2);

Gives:

01:33:03.6000000
01:33:00
share|improve this answer
Thanks but I need 01:33 output in my case – Maya Feb 24 '11 at 22:57
@Maya "1:33" is a string. You just said you wanted a TimeSpan and not a string. – CodesInChaos Feb 24 '11 at 22:59
1  
@Maya I think you're going to have to either modify your JSON serializer or do this on the client side. Or just modify the value you're sending to your serializer and send a string instead. – Chris Pebble Feb 24 '11 at 23:02
1  
A TimeSpan has no format. It's just an integral number of ticks. I think what you want is changing how it's serialized to json, and not the TimeSpan itself. – CodesInChaos Feb 24 '11 at 23:04
1  
@Maya - TimeSpan doesn't have any particular string representation until someone converts it into a string - pretty much all .NET types work like this. Though you could create one which carried its format with it, that isn't the way the standard types work. – Will Dean Feb 24 '11 at 23:06
show 3 more comments

You can use a format string for that:

public string GetTimeSpanAsString(TimeSpan input)
{
    return input.ToString(@"hh\:mm");
}
share|improve this answer

I believe this is what you're looking for.

string.Format("{0:H:mm}",myTime)
share|improve this answer
That code crashes if myTime is a TimeSpan (System.FormatException: Input string was not in a correct format.) – Fredrik Mörk Feb 24 '11 at 22:52
@Fredrik, sorry, however H:mm should be the converter your looking for. – Nick Feb 24 '11 at 22:59
I don't understand what you mean. H:mm is not a valid format string for a TimeSpan. For a DateTime yes, but not for TimeSpan. – Fredrik Mörk Feb 24 '11 at 23:03
@Fredrik, I was under the impression that it would parse the string for a time and convert it to the specified format. I apologize for giving you false information. – Nick Feb 24 '11 at 23:06

Perhaps something like this. This truncates to minutes using the truncation of an integer division, followed by a multiplication by the divisor.

return TimeSpan.FromTicks(input.Ticks/TicksPerMinute*TicksPerMinute);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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