How to replace part of the string in StringBuilder with Java

1 Answer

0 votes
package javaapplication1;

import java.io.IOException;

public class JavaApplication1 {

    public static void main(String[] args) throws IOException {

        StringBuilder sb = new StringBuilder("java c");

        sb.replace(5, 6, "c++");
        
        System.out.println(sb);
    }
}


/*

run:
                   
java c++
          
 */

 



answered Dec 20, 2016 by avibootz
edited Jan 10, 2017 by avibootz

Related questions

1 answer 144 views
3 answers 276 views
1 answer 115 views
1 answer 124 views
1 answer 132 views
1 answer 91 views
...