A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/java/stringbuilder-length-in-java-with-examples/ below:

StringBuilder length() in Java with Examples

StringBuilder length() in Java with Examples

Last Updated : 15 Oct, 2018

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
// 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
// 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()

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4