String Methods Flashcards
Return character at
.charAt(
Return substring from to
.substring(
Return the length of the string
.length()
Find the first occurrence of ''
.indexOf(
Concatenate before "." and in "()"
.concat(
Make all alphabetic characters in the string lower case
.toLowerCase()
Make all alphabetic characters in the string upper case
.toUpperCase()
Compares strings for equality, regardless of case, and returns a boolean
.equalsIgnoreCase(