14 May String length() method in Java
The length() method in Java returns the length of this string.
Syntax
Let us see the syntax,
int length()
Parameters
The method has no parameters.
Example
The following is an example of length(),
public class StudyopediaDemo {
public static void main(String args[]) {
String message = new String("Studyopedia provides free learning content!");
System.out.println("String: "+message);
// finding length of string
System.out.println("Length: "+message.length());
}
}
Output
The following is the output,

No Comments