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

I've a string, '12/10/2010 00:00:00'. How do I show this as ''12/10/2010' using C#?

share|improve this question

6 Answers

up vote 7 down vote accepted

You might try:

EDIT:

DateTime d;
DateTime.TryParse("12/10/2010 00:00:00", d);
d.ToString("MM/dd/yyyy");
share|improve this answer
-1, I think you should check your code. msdn.microsoft.com/en-us/library/ch92fbc1.aspx – Codesleuth Oct 29 '10 at 12:38
@Codesleuth - Tru dat. Hasty code typing early in the morning. Thanx. – Joel Etherton Oct 29 '10 at 12:40
Cool, removed the downvote :) – Codesleuth Oct 30 '10 at 10:43

Everyone else has answered the question directly, however I have a feeling that what you really need is to become familier with the various ways System.DateTime provides to generate a string representation:

DateTime.ToShortDateString

DateTime.ToShortTimeString

DateTime.ToString(string)

share|improve this answer

This takes the first half of your string before the space:

   string formatedDt = "12/10/2010 00:00:00".Split(' ')[0];
share|improve this answer
Doesn't compile since string.Split is a member method and not a static function. – CodesInChaos Oct 29 '10 at 13:07
Good call, I fixed it. – Steve Danner Oct 29 '10 at 14:07
string s =  "12/10/2010 00:00:00";
s = s.Substring(0,s.IndexOf(" ");
share|improve this answer
2  
I think this one doesn't work if the string contains no spaces at all. – CodesInChaos Oct 29 '10 at 12:40
@CodeInChaos - none of these solutions work if there is no space. Why is this answer different? – Joel Etherton Oct 29 '10 at 12:43
String.Split returns the whole string as [0] if the input string doesn't contain one of the split-chars. – CodesInChaos Oct 29 '10 at 13:08
1  
@CodeInChaos - I took the question "How to remove trailing spaces after a blank space, c#" to mean that there would always be at least one space. – scott Oct 29 '10 at 13:17
1  
I think your answer is perfectly reasonable for the question asked. In the general case, though, it's important to note that if there isn't a space in the given string, Substring will throw an ArgumentOutOfRangeException since IndexOf will return -1. For the sake of promoting safe code, I think it's at least a good idea to check the return from the IndexOf before calling Substring. – Dave McClelland Oct 29 '10 at 13:38

Check out String.Split

share|improve this answer
"12/10/2010 00:00:00".Split(' ')[0]

this returns the whole string if it doesn't contain a space.

Or if you need other behavior in case of a missing space you can do this:

string s =  "12/10/2010 00:00:00";
int spaceIndex=s.IndexOf(" ");
if(spaceindex>=0)
{
    return = s.Substring(0,spaceIndex);
}
else
{
    //Handle the case without space here
    //For example throw a descriptive exception
    throw new InvalidDataException("String does not contain a space");
}
share|improve this answer
If there is no space, the returned string is "12/10/201000:00:00" which is not what OP wants. – Joel Etherton Oct 29 '10 at 13:07
It's unclear what the OP want. Both returning the whole string and thus making the operation idempotent and throwing a descriptive exception seem reasonable to me. Throwing an ArgumentOutOfRangeException exception on the other hand doesn't seem reasonable to me. – CodesInChaos Oct 29 '10 at 13:19
There must be a space because OP gave space in example input. – Dialecticus Oct 29 '10 at 13:21

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.