Convert string to date format

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi
How to convert a string "11022005" to a specific date format-02/11/2005
 
megala said:
Hi
How to convert a string "11022005" to a specific date format-02/11/2005

Use DateTime.ParseExact, passing it the format of the date within the string.
 
Tom seemed to only give you half of it.

string d = "11022005";
string formatted = DateTime.ParseExact(d,
"ddMMyyyy").ToString("MM/dd/yyyy");

Or if you prefer, the string-only solution:
string d = "11022005";
string formatted = d.Substring(2,2) + '/' + d.Substring(0,2) + '/' +
d.Substring(4,4);

--
--
Truth,
James Curran
[erstwhile VC++ MVP]

Home: www.noveltheory.com Work: www.njtheater.com
Blog: www.honestillusion.com Day Job: www.partsearch.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top