Java Quick Reference
Advice
Nice to Know (Memorize)
class java.lang.String
// Returns the char value at the specified index.
char charAt(int index)// Returns the index within this string of the first occurrence of the specified substring,
// starting at the specified index; returns -1 if no such occurrence exists.
int indexOf(String str, int fromIndex)