Can any one suggest me the following: i> how to convert 3/12/2010 10:15 to the format Mar 12, 2010 10:15 in c#. ii> how to remove time part out of it(i.e after the conversion i want Mar 12, 2010
Thanks in advance.
|
Can any one suggest me the following: i> how to convert 3/12/2010 10:15 to the format Mar 12, 2010 10:15 in c#. ii> how to remove time part out of it(i.e after the conversion i want Mar 12, 2010 Thanks in advance. |
|||
|
|
|
nimesh, The String.Format function should be able to accommodate your needs (updated to reflect my comment):
To avoid the above, check out TryParse: http://msdn.microsoft.com/en-us/library/system.datetime.tryparse.aspx You can format it in lots of ways: |
|||||||||
|
|
Use DateTime.Parse(...) to parse the input string into a DateTime object, and then use Format to make the string as posted by mikey. |
|||
|
|