What string method can you use to find the characters between two indexes?
.substring(int start, int end)
What string method can you use to find the string from an index until the end?
.substring(int start)
What string method can you use to compare if two Strings are the same?
.equals(#)
What string method can you use to find the length of a string?
.length()
What string method can you use to compare the ASCII values?
.compareTo(#)
What string method returns the character at an index?
.charAt(int index)
What string method converts a string into integers?
Integer.parseInt(#)
How do ASCII values work?
uppercase < lowercase
z > a
What string method converts an integer into string?
String.valueOf(#)