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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T23:08:19+00:00 2026-06-13T23:08:19+00:00

If I had a regular expression with, say 13 capturing groups, how would I

  • 0

If I had a regular expression with, say 13 capturing groups, how would I specify a replacement string that contained the first backreference followed by the literal ‘3’?

var regex = /(one)(2)(3)(4)(5)(6)(7)(8)(9)(10)(11)(12)(13)/;
"one2345678910111213".replace(regex,"$13");
//Returns "13". How do I return "one3"?

The closest question I could find was this one, but it pertains to perl and did not include a hardcoded literal.

Also had a look at the docs on MDN, but there was nothing explicitly stated or demonstrated in the examples.

  • 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-13T23:08:20+00:00Added an answer on June 13, 2026 at 11:08 pm

    Good catch! The only solution I’ve been able to come up with is:

    var regex = /(one)(2)(3)(4)(5)(6)(7)(8)(9)(10)(11)(12)(13)/;
    "one2345678910111213".replace(regex, function(match, $1) { return $1 + "3"; } );
    

    EDIT I looked up the ECMAScript spec and it looks like this is possible without a callback. Some RegExp replacement engines — Python, for example — have a \g construct (for “group”), where you can use something like \g{1}3 in the replacement string; but JavaScript just uses $nn. That is, if you’ve got more than 9 capturing groups, you can use a two-digit back reference to remove the ambiguity, like so:

    "one2345678910111213".replace(regex, "$013" );
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm looking for a regular expression testing program that I had installed on my
I want to use a regular expression that would do the following thing (
Does anybody have a regular expression that would work to limit the number of
Is there a single regular expression that can parse a string (in Python and/or
I'm looking for a simple regular expression (I think), that would return all html
Say I had the following strings: Dublin, Ireland. DublinIreland Ireland, Dublin What regular Expression
Suppose I had a string, cats cats cats and dogs dogs dogs. What regular
I'm trying to work out what regular expression I would need to take a
I am trying to write a regular expression that will count the number of
I've been building this regular expression for a while and so far I've had

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.