Is there any way I can convert a date of format: dd/mm/yyyy to yyyymmdd format? For example from : 25/07/2011 to 20110725? in VB.NET?

link|improve this question

75% accept rate
feedback

2 Answers

up vote 5 down vote accepted

Dates themselves don't have formats inherently. You can parse a string into a DateTime by parsing it with dd/MM/yyyy format and then convert that into a string using yyyyMMdd format:

DateTime date = DateTime.ParseExact(text, "dd/MM/yyyy",
                                    CultureInfo.InvariantCulture);

string reformatted = date.ToString("yyyyMMdd", CultureInfo.InvariantCulture);

However, ideally you should keep it as a DateTime (or similar) for as long as possible.

link|improve this answer
Jon, Just curious about this one. Why can't he use String.Format method? – reggie Jul 28 '11 at 12:36
1  
@reggie: For the second line? He could, but it would be more work IMO. Why specify a compound string format specifier when you only want to format a single value? – Jon Skeet Jul 28 '11 at 12:41
Thanks for the tip, the second line is what I missed! – l3_08 Jul 28 '11 at 13:09
feedback

Use the DateTime.ParseExact method to parse the date, then use DateTimeObj.ToString("yyyyMMdd").

DaTeTime.ParseExact

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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