java strings explained code example
Example 1: string method example in java
public char charAt(int index)
-----------------------------
String x = "airplane";
System.out.println( x.charAt(2) ); // output is 'r'
Example 2: string in java
In java, string is an object. It is sequence of character values enclosed by
double quotes.