Java Stringlength() Method
Example
Return the number of characters in a string:
String txt = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";System.out.println(txt.length());Definition and Usage
Thelength() method returns the length of a specified string.
Note: The length of an empty string is 0.
Syntax
public int length()Parameters
None.
Technical Details
| Returns: | Anint value, representing the length of the string |
|---|
❮ String Methods

