string library function in java code example
Example 1: string java
System.out.println("abc");
String cde = "cde";
System.out.println("abc" + cde);
String c = "abc".substring(2,3);
String d = cde.substring(1, 2);
Example 2: java string methods
static String valueOf(int i) - returns the string representation of the int
argument.