What is the value of pos after the following code executes String s1 = abccba int pos = s1 indexOf c

2/9/20212.7. String Methods — AP CSAwesome1/13(../_images/time902.png)2.7. String MethodsA string holds characters in a sequence. Each character is at a position orindexwhich starts with 0 asshown below. Anindexis a number associated with a position in a string. The length of a string is thenumber of characters in it including any spaces or special characters. The string below has a length of 14.(../_images/stringIndicies.png)Figure 1: A string with the position (index) shown above each characterNoteThe first character in a string is at index 0 and the last characters is atlength-1.For the AP CS A exam, you only need to know how to use the following String methods. All of the Stringmethod descriptions are included in theAP CS A Java Quick Reference Sheet(-computer-science-a) that you get during the exam so you don’t have to memorize these.int length()method returns the number of characters in the string,including spaces and special characters like punctuation.String substring(int from, int to)method returns a new string with thecharacters in the current string starting with the character at thefromindex and ending at the characterbeforethetoindex (if thetoindex isspecified, and if not specified it will contain the rest of the string).int indexOf(String str)method searches for the stringstrin the currentstring and returns the index of the beginning ofstrin the current string or-1 if it isn’t found.int compareTo(String other)returns a negative value if the current stringis less than theotherstring alphabetically, 0 if they have the samecharacters in the same order, and a positive value if the current string isgreater than theotherstring alphabetically.boolean equals(String other)returns true when the characters in thecurrent string are the same as the ones in theotherstring. This method isinherited from the Object class, but isoverridenwhich means that theString class has its own version of that method.

A string holds characters in a sequence. Each character is at a position or index which starts with 0 as shown below. An index is a number associated with a position in a string. The length of a string is the number of characters in it including any spaces or special characters. The string below has a length of 14.

Note

The first character in a string is at index 0 and the last characters is at length - 1.

The String class which is built into the default java.lang library simplifies a lot of complex programming tasks for us. Classes are grouped together into a package like java.lang. Many other useful library packages can be imported in. Programmers provide Application Program Interfaces (APIs) to allow other programmers to use their code. Documentation for APIs and libraries are essential to understanding the attributes and behaviors of an object of a class.

The String class has many useful methods that you can view in the Java String API. This unit explores a few of the methods.

  • int length() method returns the number of characters in the string, including spaces and special characters like punctuation.

  • String substring(int from, int to) method returns a new string with the characters in the current string starting with the character at the from index and ending at the character before the to index (if the to index is specified, and if not specified it will contain the rest of the string).

  • int indexOf(String str) method returns the index of the beginning of str in the current string or -1 if it isn’t found.

  • int compareTo(String other) returns a negative value if the current string is less than the other string alphabetically, 0 if they have the same characters in the same order, and a positive value if the current string is greater than the other string alphabetically.

  • boolean equals(String other) returns true when the characters in the current string are the same as the ones in the other string. This method is inherited from the Object class, but is overriden which means that the String class has its own version of that method.

Run the code below to see the output from the String methods length, substring, and indexOf. The length method returns the number of characters in the string, not the last index which is length-1. The str.substring(from,to) method returns the substring from the from index up to (but not including) the to index. The method str.indexOf(substring) returns the index of where it finds substring in str or -1 if it is not there.

This code shows the output from String methods length, substring, and indexOf. How many letters does substring(0,3) return? What does indexOf return when its argument is not found?

public class Test1 { public static void main(String[] args) { String message1 = "This is a test"; String message2 = "Hello Class"; System.out.println(message1.length()); System.out.println(message2.length()); System.out.println(message1.substring(0,3)); System.out.println(message2.substring(4,5)); System.out.println(message1.substring(5)); System.out.println(message1.indexOf("is")); // This will match the is in "This"! System.out.println(message1.indexOf("Hello")); System.out.println(message2.indexOf("Hello")); System.out.println(message2.toLowerCase()); System.out.println(message2.toUpperCase()); } } ==== import static org.junit.Assert.*; import org.junit.*;; import java.io.*; public class RunestoneTests extends CodeTestHelper { @Test public void testMain() throws IOException { String output = getMethodOutput("main"); String expect = "14\n11\nThi\no\nis a test\n2\n-1\n0\nhello class\nHELLO CLASS"; boolean passed = getResults(expect, output, "Expected output from main", true); assertTrue(passed); } }

Note

Remember that substring(from,to) does not include the character at the to index! To return a single character at index i, use str.substring(index, index + 1).

What is the value of pos after the following code executes String s1 = abccba int pos = s1 indexOf c
Check your understanding

    2-7-2: What is the value of pos after the following code executes?

    String s1 = "abccba"; int pos = s1.indexOf("b");

  • 2
  • The first character is at index 0 in a string.
  • 1
  • The method indexOf returns the first position of the passed str in the current string starting from the left (from 0).
  • 4
  • Does indexOf start from the left or right?
  • -1
  • Does the string contain a b?

    2-7-3: What is the value of len after the following code executes?

    String s1 = "baby"; int len = s1.length();

  • 2
  • Length returns the number of characters in the string, not the number of characters in the name of the string.
  • 3
  • The position of the last character is 3, but the length is 4.
  • 4
  • Length returns the number of characters in the string.
  • -1
  • Length is never negative.

    2-7-4: What is the value of s2 after the following code executes?

    String s1 = "baby"; String s2 = s1.substring(0,3);

  • baby
  • This would be true if substring returned all the characters from the first index to the last inclusive, but it does not include the character at the last index.
  • b
  • This would be true if it was s1.substring(0,1)
  • ba
  • This would be true if it was s1.substring(0,2)
  • bab
  • Substring returns all the characters from the starting index to the last index - 1.

    2-7-5: What is the value of len after the following executes?

    String s1 = "Miss you!"; int len = s1.length();

  • 7
  • Count spaces and punctuation in the length.
  • 8
  • Did you forget to count a space or punctuation?
  • 9
  • The length method returns the number of characters including spaces and punctuation.

    2-7-6: What is the value of s2 after the following code executes?

    String s1 = "baby"; String s2 = s1.substring(2);

  • by
  • The method substring(index) will return all characters starting the index to the end of the string.
  • aby
  • This would be true if it was substring(1);
  • a
  • This would be true if it was substring(1,2);
  • b
  • This would be true if it was substring(2,3);
  • ba
  • This would be ture if it was substring(0,2);

We can compare primitive types like int and double using operators like == and < or >, which you will learn about in the next unit. However, with reference types like String, you must use the methods equals and compareTo, not == or < or >.

The method compareTo compares two strings character by character. If they are equal, it returns 0. If the first string is alphabetically ordered before the second string (which is the argument of compareTo), it returns a negative number. And if the first string is alphabetically ordered after the second string, it returns a positive number. (The actual number that it returns does not matter, but it is the distance in the first letter that is different, e.g. A is 7 letters away from H.)

What is the value of pos after the following code executes String s1 = abccba int pos = s1 indexOf c

Figure 2: compareTo returns a negative or positive value or 0 based on alphabetical order

The equals method compares the two strings character by character and returns true or false. Both compareTo and equals are case-sensitive. There are case-insensitive versions of these methods, compareToIgnoreCase and equalsIgnoreCase.

Run the example below to see the output from compareTo and equals. Since “Hello!” would be alphabetically ordered after “And”, compareTo returns a positive number. Since “Hello!” would be alphabetically ordered before “Zoo”, compareTo returns a negative number. Notice that equals is case-sensitive.

Run the code to see how the String methods equals and compareTo work. Is equals case-sensitive? When does compareTo return a negative number?

public class Test2 { public static void main(String[] args) { String message = "Hello!"; System.out.println(message.compareTo("Hello there")); System.out.println(message.compareTo("Hello!")); System.out.println(message.compareTo("And")); System.out.println(message.compareTo("Zoo")); System.out.println(message.equals("Hello!")); System.out.println(message.equals("hello!")); } } ==== import static org.junit.Assert.*; import org.junit.*;; import java.io.*; public class RunestoneTests extends CodeTestHelper { @Test public void testMain() throws IOException { String output = getMethodOutput("main"); String expect = "1\n0\n7\n-18\ntrue\nfalse"; boolean passed = getResults(expect, output, "Expected output from main", true); assertTrue(passed); } }

Note

Strings are immutable which means that they can’t change. Anything that you do to modify a string (like creating a substring or appending strings) returns a new string.

What is the value of pos after the following code executes String s1 = abccba int pos = s1 indexOf c
Check your understanding

    2-7-8: Drag the definition from the left and drop it on the correct concept on the right. Click the "Check Me" button to see if you are correct Review the vocabulary.
  • the position of a character in a string
  • index
  • a new string that is a part of another string with 0 to all characters copied from the original string
  • substring
  • doesn't change
  • immutable
  • the number of characters in a string
  • length

    2-7-9: Drag the definition from the left and drop it on the correct method on the right. Click the "Check Me" button to see if you are correct. Review the vocabulary.
  • Returns true if the characters in two strings are the same
  • equals
  • Returns the position of one string in another or -1
  • indexOf
  • Returns a number to indicate if one string is less than, equal to, or greater than another
  • compareTo
  • Returns a string representing the object called with this method
  • toString

    2-7-10: What is the value of s2 after the following code executes?

    String s1 = new String("hi there"); int pos = s1.indexOf("e"); String s2 = s1.substring(0,pos);

  • hi th
  • The substring method returns the string starting at the first index and not including the last index. The method indexOf returns the index of the first place the string occurs.
  • hi the
  • This would be correct if substring returned all characters between the first index and last index, but does it?
  • hi ther
  • This would be correct if indexOf returned the last position the string str was found in the current string, does it?
  • hi there
  • This would be correct if indexOf returned the last position the string str was found in the current string and if substring included all characters between the start and end index. Check both of these.

    2-7-11: What is the value of s1 after the following code executes?

    String s1 = "Hi"; String s2 = s1.substring(0,1); String s3 = s2.toLowerCase();

  • Hi
  • Strings are immutable, meaning they don't change. Any method that changes a string returns a new string. So s1 never changes.
  • hi
  • This would be true if the question was what is the value of s2 and it was substring(0,2) not (0,1)
  • H
  • This would be true if the question was what is the value of s2, not s1.
  • h
  • This would be true if the question was what is the value of s3, not s1.

    2-7-12: What is the value of s3 after the following code executes?

    String s1 = "Hi"; String s2 = s1.substring(0,1); String s3 = s2.toLowerCase();

  • Hi
  • Is this the value of s3? What does toLowerCase do?
  • hi
  • How does substring work? Does it include the character at the end index?
  • H
  • What does toLowerCase do?
  • h
  • s2 is set to just "H" and s3 is set to changing all characters in s2 to lower case.

    2-7-13: What is the value of answer after the following code executes?

    String s1 = "Hi"; String s2 = "Bye"; int answer = s1.compareTo(s2);

  • positive (> 0)
  • H is after B in the alphabet so s1 is greater than s2.
  • 0
  • The method compareTo will only return 0 if the strings have the same characters in the same order.
  • negative (< 0)
  • This would be true if it was s2.compareTo(s1)

The following code shows some common mistakes with strings.

This code contains some common mistakes with strings. Fix the code to use the string methods correctly.

public class StringMistakes { public static void main(String[] args) { String str1 = "Hello!"; // Print out the first letter? System.out.println("The first letter in " + str1 + ":" + str1.substring(1,1) ); // Print out the last character? System.out.println("The last char. in " + str1 + ":" + str1.substring(8) ); // Print str1 in lower case? Will str1 change? str1.toLowerCase(); System.out.println("In lowercase: " + str1); } } ==== import static org.junit.Assert.*; import org.junit.*;; import java.io.*; public class RunestoneTests extends CodeTestHelper { @Test public void testMain() throws IOException { String output = getMethodOutput("main"); String expect = "The first letter in Hello!:H\nThe last char. in Hello!:!\nIn lowercase: hello!"; boolean passed = getResults(expect, output, "Expected output from main"); assertTrue(passed); } }

Here is a list of common mistakes made with Strings.

  • Thinking that substrings include the character at the last index when they don’t.

  • Thinking that strings can change when they can’t. They are immutable.

  • Trying to access part of a string that is not between index 0 and length - 1. This will throw an IndexOutOfBoundsException.

  • Trying to call a method like indexOf on a string reference that is null. You will get a null pointer exception.

  • Using == to test if two strings are equal. This is actually a test to see if they refer to the same object. Usually you only want to know if they have the same characters in the same order. In that case you should use equals or compareTo instead.

  • Treating upper and lower case characters the same in Java. If s1 = "Hi" and s2 = "hi" then s1.equals(s2) is false.