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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T20:06:01+00:00 2026-05-26T20:06:01+00:00

I have a complex regex, which contains constructs like this one: ( + sectionPattern

  • 0

I have a complex regex, which contains constructs like this one:

"(" + sectionPattern + separatorPattern + ")*" + sectionPattern

The sectionPattern is a named group of complicated internal structure. Since sectionPattern appears twice, the long string defining this named group will be copied twice into the regex pattern. Moreover, because there is another, similar substructure inside sectionPattern, it will be copy-pasted four times, and so on. I couldn’t find a way to avoid such duplication, and the whole pattern is 4389 characters long now. It works, but I would prefer it being much-much shorter.

I thought there is a way to refer to an already defined named group in other parts of the pattern using only its name. I mean if you have a named group like this:

(?<sectionPattern>some_very_long_and_complicated_pattern)

…then you could refer briefly to it in other parts of the pattern like this:

(?<sectionPattern>)

I tried to use a “named backreference”:

\k<sectionPattern>

…but this matches only when the second match contains exactly the same text as the first one. Any solutions?

  • 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-26T20:06:02+00:00Added an answer on May 26, 2026 at 8:06 pm

    Unfortunately, there is no way to create a “reusable” pattern. You must repeat the pattern everywhere it’s needed.

    However, here’s a better (more readable) way to compose those patterns:

    var pattern = string.Format("({0}{1})*{0}", sectionPattern, separatorPattern);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string (coming from ASP.NET) which contains one or more placeholders. In
I have a complex regex, and I'd like to match it with the contents
I have some numbers which will be part of an sql query, like this...
I have a complex Regex which is used to help strip out HTML from
I am using WCF and REST, and I have complex types, which are working
I have a complex query with group by and order by clause and I
I have a complex command that I'd like to make a shell/bash script of.
I have a complex WPF UserControl made of other ContentControl templates which contain sets
I already have some regex logic which says to look for a div tag
I have a fairly complex content management system I've written in PHP, which has

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.