I've a string, '12/10/2010 00:00:00'. How do I show this as ''12/10/2010' using C#?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You might try: EDIT:
|
|||||||
|
|
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 |
|||
|
|
|
This takes the first half of your string before the space:
|
|||||
|
|
|||||||||||||||||
|
|
Check out String.Split |
|||
|
|
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:
|
|||||||
|