Hi everyone
I am not too experienced using C#. I need to convert date in string format to date format. I do not want any time attached to the date.
The files have naming convention "fileIdentifer_YYYY-MM-DD". I am able to extract "YYYY-MM-DD":
string fileDate = "";
fileDate = fileName.Substring(fileName.Length - 14, 10);
Now, I need to convert fileDate so it is a date type.
How can I do this?
Thank you
This should do it:
string fileDate = "2024-03-31";
DateTime someDate = DateTime.ParseExact(fileDate, "yyyy-MM-dd", CultureInfo.InvariantCulture);
April 24, 2024 at 1:09 am
Thank you so much!
Viewing 3 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply
This website stores cookies on your computer.
These cookies are used to improve your website experience and provide more personalized services to you, both on this website and through other media.
To find out more about the cookies we use, see our Privacy Policy