Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Example

input: abc def abc abc pqr

I want to to replace abc at third position with xyz.

output: abc gef abc xyz pqr

Thanks in advance

share|improve this question
2  
what code have you tried so far? – Sagar V Oct 8 '10 at 10:34

3 Answers

One way to do this would be to use.

String[] mySplitStrings = null;
String.Split(" ");
mySplitString[3] = "xyz";

And then rejoin the string, its not the best way to do it but it works, you could put the whole process into a function like.

string ReplaceStringInstance(Seperator, Replacement)
{
  // Do Stuff
}
share|improve this answer
the OP wants to replace the third match of a given pattern, not the fourth word in a sentence. – Andreas_D Oct 8 '10 at 10:48

Group the three segments, that are the part before the replaced string, the replaced string and the rest and assemble the prefix, the replacement and the suffix:

String pattern = String.format("^(.*?%1$s.*?%1$s.*?)(%1$s)(.*)$", "abc");
String result = input.replaceAll(pattern, "$1xyz$3");

This solution assumes that the whole input is one line. If you have multiline input you'll have to replace the dots as they don't match line separators.

share|improve this answer
Perhaps the following is more elegant: s.replaceFirst("(abc.*abc.*)abc", "$1xyz") – axtavt Oct 8 '10 at 10:50
Thanks alot............. I am so much thankful. – user470143 Oct 8 '10 at 10:55
Its working fine for me. – user470143 Oct 8 '10 at 10:55

There's plenty of ways to do this, but here's one. It assumes that the groups of letters will be separated by spaces, and looks for the 3rd 'abc' block. It then does a single replace to replace that with 'xyz'.

import java.util.regex.Pattern;
import java.util.regex.Matcher;

public class main {
    private static String INPUT = "abc def abc abc pqr";
    private static String REGEX = "((?:abc\\ ).*?(?:abc\\ ).*?)(abc\\ )";
    private static String REPLACE = "$1xyz ";

    public static void main(String[] args) {
        System.out.println("Input: " + INPUT);
        Pattern p = Pattern.compile(REGEX);
        Matcher m = p.matcher(INPUT); // get a matcher object
        INPUT = m.replaceFirst(REPLACE);
        System.out.println("Output: " + INPUT);
    }
}
share|improve this answer
I love these type of questions with runnable code snippets. Post ideone links as well and you'll get tons of upvotes (at least from me :-) ideone.com/f8t2u – aioobe Oct 11 '10 at 6:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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