String 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: string method example in java

public char charAt(int index)
-----------------------------
String x = "airplane";
System.out.println( x.charAt(2) ); // output is 'r'

Example 3: string in java

In java, string is an object. It is sequence of character values enclosed by 
double quotes.

Example 4: java sstring

//string syntax.
String hello = "Hello, world!";

Example 5: string java

String str = "abc";

Example 6: string java

char data[] = {'a', 'b', 'c'};
     String str = new String(data);