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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T08:03:47+00:00 2026-05-12T08:03:47+00:00

Is there any way to replace a regexp with modified content of capture group?

  • 0

Is there any way to replace a regexp with modified content of capture group?

Example:

Pattern regex = Pattern.compile("(\\d{1,2})");
Matcher regexMatcher = regex.matcher(text);
resultString = regexMatcher.replaceAll("$1"); // *3 ??

And I’d like to replace all occurrence with $1 multiplied by 3.

edit:

Looks like, something’s wrong 🙁

If I use

Pattern regex = Pattern.compile("(\\d{1,2})");
Matcher regexMatcher = regex.matcher("12 54 1 65");
try {
    String resultString = regexMatcher.replaceAll(regexMatcher.group(1));
} catch (Exception e) {
    e.printStackTrace();
}

It throws an IllegalStateException: No match found

But

Pattern regex = Pattern.compile("(\\d{1,2})");
Matcher regexMatcher = regex.matcher("12 54 1 65");
try {
    String resultString = regexMatcher.replaceAll("$1");
} catch (Exception e) {
    e.printStackTrace();
}

works fine, but I can’t change the $1 🙁

edit:

Now, it’s working 🙂

  • 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-12T08:03:48+00:00Added an answer on May 12, 2026 at 8:03 am

    How about:

    if (regexMatcher.find()) {
        resultString = regexMatcher.replaceAll(
                String.valueOf(3 * Integer.parseInt(regexMatcher.group(1))));
    }
    

    To get the first match, use #find(). After that, you can use #group(1) to refer to this first match, and replace all matches by the first maches value multiplied by 3.

    And in case you want to replace each match with that match’s value multiplied by 3:

        Pattern p = Pattern.compile("(\\d{1,2})");
        Matcher m = p.matcher("12 54 1 65");
        StringBuffer s = new StringBuffer();
        while (m.find())
            m.appendReplacement(s, String.valueOf(3 * Integer.parseInt(m.group(1))));
        System.out.println(s.toString());
    

    You may want to look through Matcher‘s documentation, where this and a lot more stuff is covered in detail.

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

Sidebar

Related Questions

Possible Duplicate: Java Regex Replace with Capturing Group Is there any way to replace
Is there any way to replace the WCF service application built-in JavascriptSerializer with Newtonsoft
Is there any way to replace titles faster then str_replace function? I've got a
Is there any way to replace a value in an ArrayAdapter mPairedDevicesArrayAdapter = new
is there any best practice way to replace a part of the default template.
I was wondering if there is any way that I can replace substrings within
Hi is there any way to 'replace' all occurences of 10 or more occurances
Is there any way to do integer incremental replacement only with regex. Here is
Is there any easy way to replace a C++ comment ( // ) with
Is there any way in Notepad++ (or even with another tool) to change the

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.