Java.lang.StringBuffer.insert() Method



Description

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

Parameters

  • offset − This is the offset.

  • f − This is the value of a float.

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("zyxwvut");
      System.out.println("buffer = " + buff);
        
      // insert float value at offset 3
      buff.insert(3, 96.7f);
        
      // 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 = zyxwvut
After insertion = zyx96.7wvut
java_lang_stringbuffer.htm
Advertisements