What does name.substring(int start, int end) do?
Returns a copy of the string between the start (inclusive) and end (exclusive) index
What does name.substring(int start) do?
Returns a copy of the string starting from start up until the end.
What does name.equals(Object another) do?
Returns true/false based off of content
What does name.length() do?
Returns the number of characters in the string including spaces, tabs, and line breaks.
What does name.compareTo(String another) do?
It compares two strings using <, >, and =.
What does name.charAt(int index) do?
It returns the character at the index position.
What does name.indexOf(“substr”) do?
It returns the index of the first occurrence of the specified substring. If there is no occurrence, -1 is returned.
What does String.valueOf() do?
Converts any int into String.
What does Integer.parseInt(“454”) do?
Converts the string argument into an integer.
What does Math.pow(x, y) do?
Returns x^y
What does Arrays.toString(arrayName) do?
Converts an array to string.