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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T10:35:37+00:00 2026-05-24T10:35:37+00:00

(I know my question’s confusing, so see below for example/explanation) I am trying to

  • 0

(I know my question’s confusing, so see below for example/explanation)

I am trying to match a bunch of things in one big regex and then figure out which subexpression I matched. The problem is when one of my subexpressions has a “collection/sequence” in it, that throws off the index of the subexpressions.

For example, in the below expression, the check for “foo” would be at index 3:

/(one)|(two)|(foo)/g

But in this one, it’s at index 4 (and yes this is a dumb regex, but the example fits):

/(one)|(([tT][wW])?o)|(foo)/g

If you used the below code to try and find “foo”, you’d get something like:

var str = "Some string that only matches foo";

while ( match = reg.exec( str ) )
{
    for ( var i = 1; i < match.length; i++ )
    {
        //Should be 3 but it's not
        if( match[ i ] !== undefined ) break;
    }

    //This won't match foo, because it's now the wrong index
    alert( match[ i ] );
}

How can I do a “one or more” type expression inside a subexpression parentheses without affecting the indexes returned to “match” via “regex.exec”?

(NOTE: don’t hesitate to tell me if this is in any way unclear and I’ll try to come up with a better example and full example code)

  • 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-24T10:35:38+00:00Added an answer on May 24, 2026 at 10:35 am

    (pattern) matches and captures the match. If you want to match, but not capture, use (?:pattern)

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

Sidebar

Related Questions

I know this question was answered, in C# and I have been trying to
I know this question has been asked multiple times on this site in one
I know this question has been asked before, but I ran into a problem.
I know this question isn't directly programming related, but since I want to be
I know a question like this was already asked, but the situation is a
I know the question title isn't the best. Let me explain. I do a
I know this question has been asked a bit before. But looking around I
I know this question might sound a little cheesy but this is the first
I know this question has kind-a started religious wars in past and there might
I know this question has been done but I have a slightly different twist

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.