Saturday, 12 September 2015

Java String length

Java String length

The java string length() method length of the string. It returns count of total number of characters. The length of java string is same as the unicode code units of the string.

Signature

The signature of the string length() method is given below:
  1. public int length()  

Specified by

CharSequence interface

Returns

length of characters

Java String length() method example

  1. public class LengthExample{  
  2. public static void main(String args[]){  
  3. String s1="javatpoint";  
  4. String s2="python";  
  5. System.out.println("string length is: "+s1.length());//10 is the length of javatpoint string  
  6. System.out.println("string length is: "+s2.length());//6 is the length of python string  
  7. }} 
  8. Output
string length is: 10
string length is: 6

No comments:

Post a Comment