Java.lang.StringBuilder.insert() Method



Description

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

public StringBuilder insert(int offset, long l)

Parameters

  • offset − This is the offset.

  • l − This is the value of long.

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.StringBuilder.insert() method.

package com.tutorialspoint;

import java.lang.*;

public class StringBuilderDemo {

   public static void main(String[] args) {
  
      StringBuilder str = new StringBuilder("zyxwvut");
      System.out.println("string = " + str);

      // insert long value at offset 4
      str.insert(4, 946986L);

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

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

string = zyxwvut
After insertion = zyxw946986vut
java_lang_stringbuilder.htm
Advertisements