vote up 1 vote down star

I have this code, and I want to know, if I can replace only groups (not all pattern) in Java regex. Code:

 //...
 Pattern p = Pattern.compile("(\\d).*(\\d)");
    String input = "6 example input 4";
    Matcher m = p.matcher(input);
    if (m.find()) {

        //Now I want replace group one ( (\\d) ) with number 
       //and group two (too (\\d) ) with 1, but I don't know how.

    }
flag

50% accept rate
Can you clarify your question, like maybe give the expected output for that input? – mmyers Jun 12 at 20:12

2 Answers

vote up 2 vote down check

Use $n (where n is a digit) to refer to captured subsequences in replaceFirst(...). I'm assuming you wanted to replace the first group with the literal string "number" and the second group with the value of the first group.

Pattern p = Pattern.compile("(\\d)(.*)(\\d)");
String input = "6 example input 4";
Matcher m = p.matcher(input);
if (m.find()) {
    // replace first number with "number" and second number with the first
    String ouput = m.replaceFirst("number $2$1");
}

Consider ([^d]) for the second group instead of (.*). * is a greedy matcher, and will at first consume the last digit. The matcher will then have to backtrack when it realizes the final (\d) has nothing to match, before it can match to the final digit.

link|flag
Thanks a lot... – wokena Jun 14 at 9:44
vote up 2 vote down

Add a third group by adding parens around ".*", then replace the subsequence with "number" + m.group(2) + "1". e.g.:

String output = m.replaceFirst("number" + m.group(2) + "1");
link|flag
Actually, Matcher supports the $2 style of reference, so m.replaceFirst("number$21") would do the same thing. – mmyers Jun 12 at 19:53
Oh, even better. – Matt Kane Jun 12 at 21:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.