StringBuilder setLength() in Java with Examples
The setLength(int newLength) method of StringBuilder is used to set the length of the character sequence equal to newLength.For every index k greater then 0 and less than newLength. If the newLength passed as argument is less than the old length, the old length is changed to the newLength.If the newLength passed as argument is greater than or equal to the old length, null characters (‘\u0000’) are appended at the end of old sequence so that length becomes the newLength argument.
Syntax:
public void setLength(int newLength)
Parameters:
This method accepts one parameter newLength which is Integer type value refers to the new length of sequence you want to set.
Returns:
This method returns nothing.
Exception:
If the newLength is negative then IndexOutOfBoundsException.
Below programs illustrate the java.lang.StringBuilder.setLength() method:
Example 1:
// Java program to demonstrate // the setLength() Method. class GFG { public static void main(String[] args) { // create a StringBuilder object // with a String pass as parameter StringBuilder str = new StringBuilder( "WelcomeGeeks" ); // print string System.out.println( "String length = " + str.length() + " and contains = " + str); // set length equal to 10 str.setLength( 10 ); // print string System.out.println( "After setLength() String = " + str.toString()); } } |
Output:
String length = 12 and contains = WelcomeGeeks After setLength() String = WelcomeGee
Example 2:
// Java program to demonstrate // the setLength() Method. class GFG { public static void main(String[] args) { // create a StringBuilder object // with a String pass as parameter StringBuilder str = new StringBuilder( "Tony Stark will die" ); // print string System.out.println( "String length = " + str.length() + " and contains = \"" + str + "\"" ); // set length equal to 25 str.setLength( 25 ); // print string System.out.println( "After setLength() String = \"" + str.toString() + "\"" ); } } |
Output:
String length = 19 and contains = "Tony Stark will die" After setLength() String = "Tony Stark will die "
Example 3: When negative new length is passed:
// Java program to demonstrate // Exception thrown by the setLength() Method. class GFG { public static void main(String[] args) { // create a StringBuilder object // with a String pass as parameter StringBuilder str = new StringBuilder( "Tony Stark" ); try { // pass length -15 str.setLength(- 15 ); } catch (Exception e) { e.printStackTrace(); } } } |
Output:
java.lang.StringIndexOutOfBoundsException: String index out of range: -15 at java.lang.AbstractStringBuilder.setLength(AbstractStringBuilder.java:207) at java.lang.StringBuilder.setLength(StringBuilder.java:76) at GFG.main(File.java:15)
References:
https://docs.oracle.com/javase/10/docs/api/java/lang/StringBuilder.html#setLength(int)
Recommended Posts:
- StringBuffer setLength() in Java with Examples
- StringBuilder subSequence() in Java with Examples
- StringBuilder codePointAt() in Java with Examples
- StringBuilder delete() in Java with Examples
- StringBuilder charAt() in Java with Examples
- StringBuilder getChars() in Java with Examples
- StringBuilder codePointCount() in Java with Examples
- StringBuilder Class in Java with Examples
- StringBuilder capacity() in Java with Examples
- StringBuilder reverse() in Java with Examples
- StringBuilder setCharAt() in Java with Examples
- StringBuilder replace() in Java with Examples
- StringBuilder ensureCapacity() in Java with Examples
- StringBuilder deleteCharAt() in Java with Examples
- StringBuilder codePointBefore() in Java with Examples
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.
Improved By : Akanksha_Rai