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);
The absence of evidence is not evidence of absence
- Martin Rees
The absence of consumable DDL, sample data and desired results is, however, evidence of the absence of my response
- Phil Parkin
April 24, 2024 at 1:09 am
Thank you so much!
May 2, 2024 at 2:33 pm
This was removed by the editor as SPAM
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply