Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8452441
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T11:30:03+00:00 2026-06-10T11:30:03+00:00

My string contains the value: 08/20/2012-10.32.19 I want the output in string datatype itself

  • 0

My string contains the value: 08/20/2012-10.32.19

I want the output in string datatype itself as 08/20/2012 10:32:19 [format is MM/dd/yyyy HH:mm:ss].

Please help!!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T11:30:05+00:00Added an answer on June 10, 2026 at 11:30 am

    You may convert the string to DateTime and then use .ToString() with the required format.

    DateTime dt = DateTime.ParseExact("08/20/2012-10.32.19", "M/d/yyyy-HH.mm.ss",CultureInfo.InvariantCulture);
    string test = dt.ToString("MM/dd/yyyy HH:mm:ss");
    

    Test will have

    08/20/2012 10:32:19
    

    EDIT: based on the comment

    You may specify multiple date formats and then parse accordingly.

    string[] formats = new string[] { "M/d/yyyy-HH.mm.ss", "yyyy-M-d-HH.mm.ss" };
    string dtTest1 = DateTime.ParseExact("08/20/2012-10.32.19",
                                         formats, 
                                         CultureInfo.InvariantCulture, 
                                         DateTimeStyles.None)
                                         .ToString("MM/dd/yyyy HH:mm:ss");
    

    Or in a single line

    string dtTest2 = DateTime.ParseExact("08/20/2012-10.32.19",
                                         new string[] { "M/d/yyyy-HH.mm.ss", "yyyy-M-d-HH.mm.ss" }, 
                                         CultureInfo.InvariantCulture, 
                                         DateTimeStyles.None)
                                         .ToString("MM/dd/yyyy HH:mm:ss");
    

    This will satisfy your both case of dates:

    08/20/2012-10.32.19
    2012-08-20-10.32.19
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to use C# to check if a string value contains a word
i want to check if a string contains a field value as a substring
The variable filepath which is a string contains the value Música . I have
I am going to pass string value between pages. The value contains & character.
So I need to get value false or true if string contains not only
Im experiencing strange behavior when converting String to DateTime and then again ToString(). Convert.ToDateTime(16-02-2012).ToString(MM/dd/yyyy)
I have a string that contains a value of either TRUE or FALSE or
I have a large string that contains text: value 1 value 2 value 3
I have a char array which contains some value . I want to copy
How to check whether a string contains any numeric value by jquery? I search

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.