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

  • Home
  • SEARCH
  • 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 8620465
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T06:35:13+00:00 2026-06-12T06:35:13+00:00

Why does $1 $2 $3.match(/\$(\d+)/g) return [$1, $2, $2] , not [1, 2, 3]

  • 0

Why does

"$1 $2 $3".match(/\$(\d+)/g)

return

 ["$1", "$2", "$2"]

, not

 ["1", "2", "3"]

?

If I remove the global flag, it will give me the match and the captured match:

["$1", "1"]

but only one.

Is there a way to do a reg ex capture to not give me this?

Even putting in a non-capturing parentheses around the $ gives me the same results, eg:

"$1 $2 $3".match(/(?:\$)(\d+)/g)
  • 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-12T06:35:14+00:00Added an answer on June 12, 2026 at 6:35 am

    If you use a capturing group in your regex (e.g. parens), then you can’t get multiple matches with the g flag the way you are trying to do it because the .match() function can’t return two dimensions of data (a list of capturing groups for each time it matched). It could have been designed to do that, but it wasn’t so in order to get that info, you have to loop and call .exec() multiple times where you get all the data from each successive match each time you call it.

    Getting this data using .exec() looks like this:

    var str = "$1 $2 $3", matches;
    var allMatches = [];
    var reg = /\$(\d+)/g;
    
    while (matches = reg.exec(str)) {
        // matches[1] is each successive match here from your captured group
        allMatches.push(matches[1]);
    }
    // allMatches will be what you wanted ["1", "2", "3"]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I dont understand why var m does not return Match. I havent checked but
I have to match two hashtable, but its keys does not match. So i
In Pyramid , add_notfound_view(append_slash=True) will cause a request which does not match any view,
Why does (gci c:\ddd).count on an Empty folder not return 0 but nothing I
I am getting an error 'return type does not match function type' when I
I am wondering why the following regex does not match. string query = \1
In the following I the get the error IndentationError: unindent does not match any
I am trying to delete part of a string that does not match my
We're getting a server error saying Parameter count does not match Parameter Value count.
Please could someone explain to me why this regex does not match anything, when

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.