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:
Output:
String = WelcomeGeeks
length of String = 12
Example 2: