string and methods in java code example
Example 1: string method example in java
public int length()
-----------------------
String x = "01234567";
System.out.println( x.length() ); // returns "8"
Example 2: string method example in java
public String concat(String s)
String x = "book";
System.out.println( x.concat(" author") ); // output is "book author"