Insert String into Substring of StringBuffer in Java



The insert() method of the StringBuffer class inserts the String starting from an index specified in the parameter along with the string

The syntax of the insert method is −

original_string.insert( index , var)

where var is the variable to be inserted and index is the position where the variable var is to be inserted.

Let us see an example program −

Example

 Live Demo

public class Example {
   public static void main(String[] args) {
      StringBuffer str = new StringBuffer("Hello World");
      String a = "Wonderful ";
      str.insert(6, a);
      System.out.println(str);
   }
}

Output

Hello Wonderful World
Updated on: 2020-06-26T15:35:39+05:30

229 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements