0 votes
in JAVA by
string.length java

1 Answer

0 votes
by

What is String "Length" Method in Java?

This function is used to get the length of a Java String. The string length method returns the number of characters written in the String. This method returns the length of any string which is equal to the number of 16-bit Unicode characters in the string.

String "Length" Method Syntax:

public int length()

Parameters:

NA

Return Value:

This method returns the length of the string.

Java string Length Method Examples:

In this program, we have two Strings and we find out the length of them using length() method.

public class Sample_String {
    public static void main(String[] args) {
        //declare the String as an object S1 S2
        String S1 = "Hello Java String Method";
        String S2 = "RockStar";

        //length() method of String returns the length of a String S1.
        int length = S1.length();
        System.out.println("Length of a String is: " + length);
        //8 Length of a String RockStar
        System.out.println("Length of a String is: " + S2.length());
    }
}

Output:

Length of a String is: 24

Length of a String is: 8

Related questions

0 votes
asked Sep 3, 2019 in JAVA by Robin
0 votes
asked Sep 3, 2019 in JAVA by Robin
...