Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java String Exercises: Get the length of a given string

Java String: Exercise-22 with Solution

Write a java program to get the length of a given string.

Pictorial Presentation:

Java String Exercises: Get the length of a given string

Sample Solution:

Java Code:

public class Exercise22 {
public static void main(String[] args)
  {  
    String str = "example.com";
    // Get the length of str.
    int len = str.length();
    System.out.println("The string length of '"+str+"' is: "+len);
   }
}

Sample Output:

The string length of 'example.com' is: 11

Flowchart:

Flowchart: Java String  Exercises - Get the length of a given string

Visualize Java code execution (Python Tutor):


Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a Java program to get the last index of a string within a string.
Next: Write a Java program to find whether a region in the current string matches a region in another string.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe