14 May String length() method in Java
The length() method in Java returns the length of this string.
Syntax
Let us see the syntax,
1 2 3 |
int length() |
Parameters
The method has no parameters.
Example
The following is an example of length(),
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
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