The String class type has many convenient instance methods. For example,
- String replace(char oldchar, char newchar)
- String toUpperCase()
- String toLowerCase()
- String substring(int startPos, int endPos)
- boolean startsWith(String prefix)
- int length()
Remember, these methods cannot be called without using the dot operator and a String instance.