Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to format a TimeSpan element in the format of "[minutes]:[seconds]". In this format, 2 minutes and 8 seconds would look like "02:08". I have tried a variety of options with String.Format and the ToString methods, but I get a FormatException. This is what I'm currently trying:

DateTime startTime = DateTime.Now;
// Do Stuff
TimeSpan duration = DateTime.Now.Subtract(startTime);

Console.WriteLine("[paragraph of information] Total Duration: " + duration.ToString("mm:ss"));

What am I doing wrong? How do I format a TimeSpan element using my desired format?

Thank you

share|improve this question

9 Answers

up vote 28 down vote accepted

Try this:

Console.WriteLine("{0:D2}:{1:D2}", duration.Minutes, duration.Seconds);
share|improve this answer
oh, you posted while I was writing my answer :) – Joel Mar 16 '10 at 17:13
3  
This isn't really correct, the time separator is a culture sensitive string, available in CultureInfo.DateTimeFormat.TimeSeparator. Or use the DateTime.ToString() method. – Hans Passant Mar 16 '10 at 18:20
@nobugz: Thanks for the valuable info. The OP explicitly requested this specific format. – Ahmed Abdelkader Mar 16 '10 at 21:09
4  
@ahmad: just a heads-up for the untold number of programmers that are going to google this answer some day. – Hans Passant Mar 16 '10 at 21:15
1  
There is another answer here which shows a new ToString() syntax available in .NET 4.0: duration.ToString("mm':'ss") (The literal : is quoted inside the format specifier.) Please see answer from @LukeH for more details. – Robert Altman May 19 '11 at 23:56
show 1 more comment

NOTE: This answer applies to .NET 4.0 only.

The colon character is a literal and needs to be wrapped in single quotes:

duration.ToString("mm':'ss")

From the MSDN documentation:

The custom TimeSpan format specifiers do not include placeholder separator symbols, such as the symbols that separate days from hours, hours from minutes, or seconds from fractional seconds. Instead, these symbols must be included in the custom format string as string literals.

share|improve this answer
2  
Does not work for me ... I think the problem is the TimeSpan, for a DateTime it works – tanascius Mar 16 '10 at 17:10
TimeSpan doesn't have a ToString(string) method. – Јοеу Mar 16 '10 at 17:13
@tanascius, @Johannes Rössel: I just noticed that the ToString(string) overload only exists in .NET4. Prior versions of the framework only have the plain ToString() method that takes no parameters. – LukeH Mar 16 '10 at 17:35
2  
Is this answer really so bad that it deserves two (so far) downvotes? The OP doesn't specify which version of .NET that they're using, and if their code compiles at all then they must be using .NET4. (And their code must be compiling, otherwise how would they be seeing a FormatException at runtime?) – LukeH Mar 16 '10 at 17:37
1  
I did not downvote, but you just got my upvote because of your explanation - didn't know that it works in 4.0. By the way: the code compiles in 3.5, too. But the result is wrong ("00:00:00") – tanascius Mar 16 '10 at 23:01
show 1 more comment

Custom formatting of System.TimeSpan was added in .Net 4, so you can now do the following:

string.Format("{0:mm\\:ss}", myTimeSpan);

In short you now need to escape the ":" character with a "\" (which itself must be escaped unless you're using a verbatim string).

This excerpt from the MSDN Custom TimeSpan Format Strings page explains about escaping the ":" and "." charecters in a format string:

The custom TimeSpan format specifiers do not include placeholder separator symbols, such as the symbols that separate days from hours, hours from minutes, or seconds from fractional seconds. Instead, these symbols must be included in the custom format string as string literals. For example, "dd.hh\:mm" defines a period (.) as the separator between days and hours, and a colon (:) as the separator between hours and minutes.

share|improve this answer
Hard to find the example that did not use .ToString() – Casper Leon Nielsen Apr 14 at 18:54

For some mysterious reason TimeSpan never got the ToString() overloads that support formatting until .NET 4.0. For earlier releases, as long as it is positive, you can hijack DateTime.ToString():

        TimeSpan ts = new TimeSpan(0, 2, 8);
        string s = new DateTime(ts.Ticks).ToString("mm:ss");
share|improve this answer
The ToString(string) overload for TimeSpan is available in .NET4. – LukeH Mar 16 '10 at 17:56
Much nicer code than the accepted answer. – yu_ominae Oct 3 '12 at 6:29

The date and time format strings only apply to DateTime and DateTimeOffset. Yo can use a normal format string, though:

string.Format("{0}:{1:00}", Math.Truncate(duration.TotalMinutes), duration.Seconds)

Note that using TotalMinutes here ensures that the result is still correct when it took longer than 60 minutes.

share|improve this answer

Try this:

DateTime startTime = DateTime.Now;
// Do Stuff
TimeSpan duration = DateTime.Now.Subtract(startTime);

Console.WriteLine("[paragraph of information] Total Duration: " + duration.Minutes.ToString("00") + ":" + duration.Seconds.ToString("00"));
share|improve this answer
TimeSpan t = TimeSpan.Parse("13:45:43");
Console.WriteLine(@"Timespan is {0}", String.Format(@"{0:yy\:MM\:dd\:hh\:mm\:ss}", t));
share|improve this answer

Based on this MSDN page describing the ToString method of TimeSpan, I'm somewhat surprised that you can even compile the code above. TimeSpan doesn't have a ToString() overload that accepts only one string.

The article also shows a function you can coyp and use for formatting a TimeSpan.

share|improve this answer
The code will compile if the OP is using .NET4, but will then hit a runtime FormatException as they describe. – LukeH Mar 16 '10 at 17:31

you could always do:

string.Format("{0}:{1}", duration.Minutes, duration.Seconds);
share|improve this answer
1  
With an empty format string that'd be a nice, empty result ;-) – Јοеу Mar 16 '10 at 17:14
Yeah, good point. :) Still wouldn't be hard to fix though. – Joel Mar 16 '10 at 18:24
@Joel: And you don't even bother to edit your answer and correct it? Wow you're brave! ;) – Robert Koritnik Mar 30 '11 at 16:36
1  
@Robert Koritnik: You realize that this answer is over a year old, right? I guess I'll edit it for your benefit so you don't have to scroll up and see better solutions. – Joel Mar 30 '11 at 21:31
@Joel: it was just an observation after a year. @Joey told you about the problem on the same day you answered. I was astonished by that not that nobody told you or that you didn't see it. Never mind. – Robert Koritnik Mar 31 '11 at 6:52
show 1 more comment

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.