Please enable JavaScript to use CodeHS

AP CSA: VAR-1.E.12

CodeHS Lessons

The following String methods and constructors—including what they do and when they are used—are part of the Java Quick Reference— ● String(String str) —Constructs a new String object that represents the same sequence of characters as str ● int length()—returns the number of characters in a String object ● String substring(int from, int to)—returns the substring beginning at index from and ending at index to – 1 ● String substring(int from) —returns substring(from, length()) ● int indexOf(String str) —returns the index of the first occurrence of str; returns -1 if not found ● boolean equals(String other) —returns true if this is equal to other; returns false otherwise ● int compareTo(String other) —returns a value < 0 if this is less than other; returns zero if this is equal to other; returns a value > 0 if this is greater than other

Standard
2.8 String Methods
Standard
3.5 Strings Methods
Standard
4.8 String Methods
Standard
5.5 Strings Methods
Standard
8.8 String Methods
Standard
5.5 Strings Methods