Methods for changing strings |
|
String concat(String str) |
String toUpperCase() |
Methods for searching |
|
int indexOf(int ch) |
int indexOf(String str) |
Methods for testing |
|
boolean startsWith(String prefix, int toffset) |
boolean endsWith(String suffix) |
Methods for accessing |
|
String substring(int beginIndex) |
char charAt(int index) |
int Integer.parseInt(String s) : returns the integer represented by the String sdouble Double.parseDouble(String s): returns the double represented by the String s