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

I'm writing a program that will replace multiple words in a single string. I'm using this code but it is replacing word but giving result in two different lines. I want multiple words replaced and output in one single line.

import java.util.*;
public class ReplaceString {
    public static void main(String[] args) {
        new ReplaceString().run();
    }

    public void run()
    {

        System.out.println("Input String:\n");////
        Scanner keyboardScanner = new Scanner(System.in);/////
        String inString = keyboardScanner.nextLine();/////
        String strOutput = inString.replace("call me","cm");
        System.out.println(strOutput);

        String strOutput1 = inString.replace("as soon as possible","asap");
        System.out.println(strOutput1);      

    }
}
share|improve this question

4 Answers

If you want to do it in a single statement you can use:

String strOutput = inString.replace("call me","cm").replace("as soon as possible","asap");

Alternatively, if you have many such replacements, it might be wiser to store them in some kind of data structure such as a 2d-array. For example:

//array to hold replacements
String[][] replacements = {{"call me", "cm"}, 
                           {"as soon as possible", "asap"}};

//loop over the array and replace
String strOutput = inString;
for(String[] replacement: replacements) {
    strOutput = strOutput.replace(replacement[0], replacement[1]);
}

System.out.println(strOutput);
share|improve this answer
+1: That is indeed the neat way. – Martijn Courteaux Jul 19 '11 at 9:52
1  
It's not proper way doing it because if you have input "abc" and replacements = {{"a"}{"b"},{"b"}{"c"}} you should expect "bcc" on output but you will get "ccc". The solution was described here - stackoverflow.com/questions/1326682/java-replacing-multiple-different-substring‌​-in-a-string-at-once-or-in-the-most. – patryk.beza Jan 20 at 11:05

Of course it prints two lines: you have two print statements. Use this code:

import java.util.*;

public class ReplaceString {
    public static void main(String[] args) {
        new ReplaceString().run();
    }

    public void run()
    {

        System.out.println("Input String:\n");////
        Scanner keyboardScanner = new Scanner(System.in);/////
        String inString = keyboardScanner.nextLine();/////
        String shortMessage = shortifyMessage(inString);
        System.out.println(shortMessage);
    }

    public String shortifyMessage(String str)
    {
        String s = str;
        s = s.replace("call me", "cm");
        s = s.replace("as soon as possible", "asap");
        // Add here some other replacements

        return s;
    }
}
share|improve this answer
Hi, This code is really the one i need, I'm soooooooooooooooo thankful to u :) – shumaila Jul 20 '11 at 6:38
1  
@shumaila: Then you can click the tick at the left of my answer to accept this answer. Of course you can always upvote as well :D – Martijn Courteaux Jul 20 '11 at 9:34

Use System.out.print() instead of System.out.println()

share|improve this answer
    String strOutput1 = inString.replace("as soon as possible","asap");

You should change that to

    String strOutput1 = strOutput .replace("as soon as possible","asap");
share|improve this answer
Hi this is really useful :) – shumaila Jul 20 '11 at 6:39

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.