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 849741
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T07:09:07+00:00 2026-05-15T07:09:07+00:00

I have a situation where I need to extract dates from the file names

  • 0

I have a situation where I need to extract dates from the file names whose general pattern is [filename_]YYYYMMDD[.fileExtension]

e.g. “xxx_20100326.xls” or x2v_20100326.csv

The below program does the work

//Number of charecter in the substring is set to 8 
//since the length of YYYYMMDD is 8

public static string ExtractDatesFromFileNames(string fileName)
{

    return fileName.Substring(fileName.IndexOf("_") + 1, 8);
}

Is there any better option of achieving the same?

I am basically looking for standard practice.

I am using C#3.0 and dotnet framework 3.5

Edit:

I have like the solution and the way of answerig of LC. I have used his program like

string regExPattern = "^(?:.*_)?([0-9]{4})([0-9]{2})([0-9]{2})(?:\\..*)?$";
string result =  Regex.Match(fileName, @regExPattern).Groups[1].Value;

The input to the function is : “x2v_20100326.csv”

But the output is: 2010 instead of 20100326(which is the expected one).

Can anyone 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-05-15T07:09:07+00:00Added an answer on May 15, 2026 at 7:09 am

    I would use a regex, especially if it’s possible there’s more than one underscore in the filename. Then you can capture the year, month, day and return a DateTime if necessary. This way you can make sure you’re extracting the right portion of the filename and it indeed matches the pattern you’re searching for.

    For the pattern [filename_]YYYYMMDD[.fileExtension], I’m thinking something like:

    ^(?:.*_)?([0-9]{4})([0-9]{2})([0-9]{2})(?:\..*)?$
    

    Then your captured groups will be year, month, and day, in that order.

    Explanation:

    ^: The beginning of your string.

    (?:.*_)?: An optional non-capturing group, containing any number of characters followed by an underscore.

    ([0-9]{4}): A capturing group containing exactly four digits.

    ([0-9]{2}): A capturing group containing exactly two digits.

    (?:\..*)?: An optional non-capturing group, containing a dot followed by any number of characters.

    $: The end of your string.

    However, I will add that if you’re sure your filenames have one and only one underscore, and the date follows that underscore, the code you have is cleaner and will probably be slightly faster than the regex. It’s something to keep in mind based on the expected input set.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a situation where I need to extract a value from a form
I have a situation in which I need to extract Data Annotations information from
I have this situation where I need to get some data from a webpage
I have a situation where I need to display ItemID and ItemName from Items
I have serbian-english words in .rtf format and I need to extract it from
I have a situation where I need to store a general piece of data
I have a situation where I need to spawn a helper process from within
I have situation where I need to change the order of the columns/adding new
I have a situation where I need to be able to load assemblies in
I have a situation where I need to work with a datagrid and adding

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.