Answers for "how to add to a string in java"

5

insert string in string java

String newString = originalString.substring(0, index + 1) 
                           + stringToBeInserted 
                           + originalString.substring(index + 1);
Posted by: Guest on August-20-2020
0

how do you combine 2 strings

-By  using (+) operator
-By  using concatenate method (concat()).
                      String strconcat3=strconcat2.concat(strconcat);

-By StringBuffer
-String strconcat= new StringBuilder().append("matt")
                                .append("damon").toString();
                                
-By StringBuilder
- String strconcat2= new StringBuffer()
                  .append("matt").append("damon").toString();
Posted by: Guest on January-14-2021

Code answers related to "how to add to a string in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language