Java Data Type Tutorial - Java String.length()








Syntax

String.length() has the following syntax.

public int length()

Example

In the following code shows how to use String.length() method.

public class Main {
  public static void main(String[] argv) {
    String str = "";
    System.out.println(str.length());
    
    str = "demo2s.com";
    System.out.println(str.length());
  }
}

The output: