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,

Java String length method

String lastIndexOf(String str, int fromIndex) method in Java
String matches() method in Java
Studyopedia Editorial Staff
[email protected]

We work to create programming tutorials for all.

No Comments

Post A Comment