
The Java String Class
Working with Strings in Java:
This zip file contains Java code example that will explain and demonstrate the usage of the String class in Java:
String Methods explained:
* length: returns an integer
* equals, equalsIgnoreCase: returns true or false
* startsWith: returns true or false
* endsWith: returns true or false
* contains: returns true or false
* toUpperCase, toLowerCase
* charAt(5); Wolf of Wall Street
* substring(4,5) // start and stop index
* replace,
* concat,
* indexOf