get string length in java code example
Example 1: java check for string length
String data = "Hello, World!";
int nameLength = data.length();
Example 2: length of string java
public class Sample_String {
public static void main(String[] args) {
String S1 = "Hello Java String Method";
String S2 = "RockStar";
int length = S1.length();
System.out.println("Length of a String is: " + length);
System.out.println("Length of a String is: " + S2.length());
}
}
Example 3: string length in java
String data = "Hello, World!";
int nameLength = data.length();
Example 4: length and length() method in java
length() : In String class we have length() method which is used
to return the number of characters in string.
Ex : String str = “Hello World”;
System.out.println(str.length());
Str.length() will return 11 characters including space.
length : we have length instance variable in arrays which will
return the number of values or objects in array.
For example :
String days[]={” Sun”,”Mon”,”wed”,”thu”,”fri”,”sat”};
Will return 6 since the number of values in days array is 6