Convert string to date format

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • megala

    #1

    Convert string to date format

    Hi
    How to convert a string "11022005" to a specific date format-02/11/2005
  • Tom Porterfield

    #2
    Re: Convert string to date format

    megala wrote:[color=blue]
    > Hi
    > How to convert a string "11022005" to a specific date format-02/11/2005[/color]

    Use DateTime.ParseE xact, passing it the format of the date within the string.
    --
    Tom Porterfield

    Comment

    • James Curran

      #3
      Re: Convert string to date format

      Tom seemed to only give you half of it.

      string d = "11022005";
      string formatted = DateTime.ParseE xact(d,
      "ddMMyyyy").ToS tring("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

      "megala" <megala@discuss ions.microsoft. com> wrote in message
      news:2DDDD033-0794-44B9-B5D7-7516505E5A61@mi crosoft.com...[color=blue]
      > Hi
      > How to convert a string "11022005" to a specific date format-02/11/2005[/color]


      Comment

      Working...