Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

StringBuilder length() in Java with Examples

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The length() method of StringBuilder class returns the number of character the StringBuilder object contains. The length of the sequence of characters currently represented by this StringBuilder object is returned by this method.

Syntax:

public int length()

Return Value: This method returns length of sequence of characters contained by StringBuilder object.

Below programs demonstrate the length() method of StringBuilder Class:

Example 1:




// Java program to demonstrate
// the length() 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 = "
                           + str.toString());
  
        // get length of StringBuilder object
        int length = str.length();
  
        // print length
        System.out.println("length of String = "
                           + length);
    }
}

Output:

String = WelcomeGeeks
length of String = 12

Example 2:




// Java program to demonstrate
// the length() Method.
  
class GFG {
    public static void main(String[] args)
    {
  
        // create a StringBuilder object
        // with a String pass as parameter
        StringBuilder
            str
            = new StringBuilder("India is Great");
  
        // print string
        System.out.println("String = "
                           + str.toString());
  
        // get length of StringBuilder object
        int length = str.length();
  
        // print length
        System.out.println("length of String = "
                           + length);
    }
}

Output:

String = India is Great
length of String = 14

Reference:
https://docs.oracle.com/javase/10/docs/api/java/lang/StringBuilder.html#length()


My Personal Notes arrow_drop_up
Last Updated : 15 Oct, 2018
Like Article
Save Article
Similar Reads
Related Tutorials