
- Java.lang - Home
- Java.lang - Boolean
- Java.lang - Byte
- Java.lang - Character
- Java.lang - Character.Subset
- Java.lang - Character.UnicodeBlock
- Java.lang - Class
- Java.lang - ClassLoader
- Java.lang - Compiler
- Java.lang - Double
- Java.lang - Enum
- Java.lang - Float
- Java.lang - InheritableThreadLocal
- Java.lang - Integer
- Java.lang - Long
- Java.lang - Math
- Java.lang - Number
- Java.lang - Object
- Java.lang - Package
- Java.lang - Process
- Java.lang - ProcessBuilder
- Java.lang - Runtime
- Java.lang - RuntimePermission
- Java.lang - SecurityManager
- Java.lang - Short
- Java.lang - StackTraceElement
- Java.lang - StrictMath
- Java.lang - String
- Java.lang - StringBuffer
- Java.lang - StringBuilder
- Java.lang - System
- Java.lang - Thread
- Java.lang - ThreadGroup
- Java.lang - ThreadLocal
- Java.lang - Throwable
- Java.lang - Void
- Java.lang Package Useful Resources
- Java.lang - Useful Resources
- Java.lang - Discussion
Java.lang.StringBuffer.append() Method
Description
The java.lang.StringBuffer.append(CharSequence s, int start, int end) method appends a subsequence of the specified CharSequence to this sequence. Characters of the argument s, starting at index start, are appended, in order, to the contents of this sequence up to the (exclusive) index end. The length of this sequence is increased by the value of end - start.
Declaration
Following is the declaration for java.lang.StringBuffer.append() method
public StringBuffer append(CharSequence s, int start, int end)
Parameters
s − This is the sequence to append.
start − This is the starting index of the subsequence to be appended..
end − This is the end index of the subsequence to be appended.
Return Value
This method returns a reference to this object.
Exception
IndexOutOfBoundsException − if start or end are negative, or start is greater than end or end is greater than s.length().
Example
The following example shows the usage of java.lang.StringBuffer.append() method.
package com.tutorialspoint; import java.lang.*; public class StringBufferDemo { public static void main(String[] args) { StringBuffer buff = new StringBuffer("tutorials "); System.out.println("buffer = " + buff); CharSequence cSeq = "tutspoint"; // appends the CharSequence with start index 4 and end index 9 buff.append(cSeq, 4, 9); // print the string buffer after appending System.out.println("After append = " + buff); } }
Let us compile and run the above program, this will produce the following result −
buffer = tutorials After append = tutorials point