how to add characters to a string java code example

Example 1: insert string in string java

String newString = originalString.substring(0, index + 1) 
                           + stringToBeInserted 
                           + originalString.substring(index + 1);

Example 2: add one character to string java

char ch='A';
String str="pple";
str= ch+str;   // str will change to "Apple"

Example 3: how to add a character to a string in java

// Define a character
char ch='A';
// Define a string
String str="pple";
str= ch+str;   // str will change to "Apple"

Tags:

Misc Example