Java.lang.StringBuffer.insert() Method



Description

The java.lang.StringBuffer.insert(int offset, boolean b) method inserts the string representation of the boolean 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, boolean b)

Parameters

  • offset − This is the offset.

  • b − This is the boolean value.

Return Value

This method returns a reference to this object.

Exception

StringIndexOutOfBoundsException − 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("This is ?");
      System.out.println("buffer = " + buff);

      // insert boolean value at offset 8
      buff.insert(8, false);

      // 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 = This is ?
After insertion = This is false?
java_lang_stringbuffer.htm
Advertisements