jreese
5
Q:

string length in java

String data = "Hello, World!";
int nameLength = data.length(); // 13
12
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());
    }
}
13
str.length();
1
String data = "Hello, World!";
int nameLength = data.length(); 
6
string.length()
2

New to Communities?

Join the community