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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T11:21:54+00:00 2026-06-13T11:21:54+00:00

I need a C# regex to extract the last 6 letters of a string

  • 0

I need a C# regex to extract the last 6 letters of a string and add a forward slash in the middle of them. For example:

xx_xxxx_xxxABCXYZ.Something.csv

I need ABC/XYZ

The 3 letter components could be anything and the amount of x’s in front varies. However, the 6 letters I need are always immediately preceding the first period.

I don’t have the option of additional code because I need to input the Pattern and Replacement into a GUI.

Much appreciated.

  • 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-13T11:21:55+00:00Added an answer on June 13, 2026 at 11:21 am

    Use this:

    ^.*?(\w{3})(\w{3})\..*$
    

    Replace with:

    $1/$2
    

    The pattern matches the whole string so everything gets removed in the end, but it captures the two string of 3 characters each in capturing groups. These are then accessed and put back in place with $1 and $2. The pattern is also followed by \., so there has to be a dot following the six characters. The ? after the .* makes sure that you find the first possible occurrence (instead of ething).

    Note that this allows for digits, letters and underscores to make up the six characters. If you only want letters, use [a-zA-Z] or [A-Z] for upper-case only.

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

Sidebar

Related Questions

I need a regex (JavaScript) which will extract shortforms from a string for example
I need to extract parts of a string using regex in Python. I'm good
Hi have this URL string which I need to extract possibly using regex but
I need a regex string to extract parameters from different types of url, for
I would need a regex to extract 'Fred' (identified as user) from a string
I need to extract URPlus1_S2_3 from the string: Last one: http://abc.imp/Basic2#URPlus1_S2_3, using regular expression
I need to extract the last date only from a string that looks like
I need to extract the last number that is inside a string. I'm trying
I need a regex to match parts of a string. For example, in the
I need a regex that also matches Chinese, Greek, Russian, ... letters. What I

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.