Processing Methods

Some commonly used string processing methods are:

String concat(String anotherString);
int compareTo(String compString);
int compareToIgnoreCase(String compString);
String substring(int start, int end);
String substring(int start);
int indexOf(String substring);
String toUpperCase( );
String toLowerCase( );

We are going to look at some of this methods in more detail.