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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T23:29:51+00:00 2026-05-16T23:29:51+00:00

Good morning guys Is there a good way to use regular expression in C#

  • 0

Good morning guys

Is there a good way to use regular expression in C# in order to find all filenames and their paths within a string variable?

For example, if you have this string:

string s = @"Hello John

these are the files you have to send us today: <file>C:\Development\Projects 2010\Accounting\file20101130.csv</file>, <file>C:\Development\Projects 2010\Accounting\orders20101130.docx</file>

also we would like you to send <file>C:\Development\Projects 2010\Accounting\customersupdated.xls</file>

thank you";

The result would be:

C:\Development\Projects 2010\Accounting\file20101130.csv
C:\Development\Projects 2010\Accounting\orders20101130.docx
C:\Development\Projects 2010\Accounting\customersupdated.xls

EDITED:
Considering what told @Jim, I edited the string adding tags in order to make it easier to extract needed file names from string!

  • 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-16T23:29:51+00:00Added an answer on May 16, 2026 at 11:29 pm

    Here’s something I came up with:

    using System;
    using System.Text.RegularExpressions;
    
    public class Test
    {
    
        public static void Main()
        {
            string s = @"Hello John these are the files you have to send us today: 
                C:\projects\orders20101130.docx also we would like you to send 
                C:\some\file.txt, C:\someother.file and d:\some file\with spaces.ext  
    
                Thank you";
    
            Extract(s);
    
        }
    
        private static readonly Regex rx = new Regex
            (@"[a-z]:\\(?:[^\\:]+\\)*((?:[^:\\]+)\.\w+)", RegexOptions.IgnoreCase);
    
        static void Extract(string text)
        {
            MatchCollection matches = rx.Matches(text);
    
            foreach (Match match in matches)
            {
                Console.WriteLine("'{0}'", match.Value);
            }
        }
    
    }
    

    Produces: (see on ideone)

    'C:\projects\orders20101130.docx', file: 'orders20101130.docx'
    'C:\some\file.txt', file: 'file.txt'
    'C:\someother.file', file: 'someother.file'
    'd:\some file\with spaces.ext', file: 'with spaces.ext'
    

    The regex is not extremely robust (it does make a few assumptions) but it worked for your examples as well.


    Here is a version of the program if you use <file> tags. Change the regex and Extract to:

    private static readonly Regex rx = new Regex
        (@"<file>(.+?)</file>", RegexOptions.IgnoreCase);
    
    static void Extract(string text)
    {
        MatchCollection matches = rx.Matches(text);
    
        foreach (Match match in matches)
        {
            Console.WriteLine("'{0}'", match.Groups[1]);
        }
    }
    

    Also available on ideone.

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

Sidebar

Related Questions

Good morning all. I've been pondering over the best way to use plupload with
Good morning, is there a way to get a DriveInfo instance for UNC paths
Good morning to all, What is the preferred way to embed images (and other
Good morning/afternoon/evening guys Here is the thing. I'm making a registering gsp that it
Good morning! I would like to ask some help from you guys on how
Good Morning, Is it possible to map assembly requests to the version within another
Good morning, I've been up all night trying to figure this out on my
Good morning all. I'm having a small crisis with table views in a 3.1
Good morning, all. I've been doing websites now for about seven years (most of
Good Morning All, I am developing a new ASP.net MVC web application. Part of

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.