Java.lang.StringBuffer.insert() Method



Description

The java.lang.StringBuffer.insert(int offset, char c) method inserts the string representation of the char argument into this sequence.The offset argument must be greater than or equal to 0, and less than or equal to the length of this sequence.

Declaration

Following is the declaration for java.lang.StringBuffer.insert() method

public StringBuffer insert(int offset, char c)

Parameters

  • offset − This is the offset.

  • c − This is the char value.

Return Value

This method returns a reference to this object.

Exception

IndexOutOfBoundsException − if the offset is invalid.

Example

The following example shows the usage of java.lang.StringBuffer.insert() method.

package com.tutorialspoint;

import java.lang.*;

public class StringBufferDemo {

   public static void main(String[] args) {

      StringBuffer buff = new StringBuffer("Tutorial");
      System.out.println("buffer = " + buff);

      // insert character value at offset 8
      buff.insert(8, 's');

      // prints stringbuffer after insertion
      System.out.print("After insertion = ");
      System.out.println(buff.toString());
   }      
}

Let us compile and run the above program, this will produce the following result −

buffer = Tutorial
After insertion = Tutorials
java_lang_stringbuffer.htm
Advertisements