8.6. Studio: Strings and Arrays

Strings are ordered collections of characters, which are strings of length 1. The characters in a string can be accessed using bracket notation.

Arrays are ordered collections of items, which can be strings, numbers, other arrays, etc. The items/elements/entries stored in an array can be accessed using bracket notation.

Strings are immutable, whereas arrays can be changed.

Strings and arrays have properties and methods that allow us to easily perform some useful actions. Remember, some of the methods will create a copy of the original string, while others create an new string, which will need to be stored.

8.6.1. String Modification

Use string methods to convert a word into pseudo-pig latin.

  1. Remove the first three characters from a string and add them to the end. Ex: "LaunchCode" becomes "nchCodeLau". Use string interpolation to print the original and modified string in a descriptive phrase.

  2. Modify your code to accept user input. Query the user to enter the number of letters that will be relocated.

  3. Add validation to your code to deal with user inputs that are longer than the word. In such cases, default to moving 3 characters. Also, a string interpolation should note the error.

Code it at repl.it

8.6.2. Array and String Conversion

The Split and Join methods convert back and forth between strings and arrays. Use delimiters as reference points to split a string into an array, then modify the array and convert it back to a printable string.

  1. For a given string, use the Contains method to check to see if the words are separated by commas (,), semicolons (;) spaces, or colons (:).

  2. If the string uses commas to separate the words, Split it into an array, reverse the entries, and then Join the array into a new comma separated string. For example, "up,to,code,fun" becomes "fun,code,to,up".

  3. If the string uses semicolons to separate the words, Split it into an array, alphabetize the entries, and then Join the array into a new hyphen separated string. For example, "up;to;code;fun" becomes "code-fun-to-up".

  4. If the string uses spaces to separate the words, Split it into an array, reverse alphabetize the entries, and then Join the array into a new space separated string. For example, "to code up fun" becomes "up to fun code".

  5. If the string uses “colons” to separate the words, modify your code to produce the same result as part b, but to help with reading make sure that the comma spaces (, ) are part of the final string. For example, "up:to:code:fun" becomes "fun, code, to, up".

Code it at repl.it

8.6.3. Bonus Mission: Multi-dimensional Arrays

Arrays can store other arrays!

  1. The cargo hold in our shuttle contains several smaller storage spaces. Initialize a two dimensional cargoHold to store arrays.

    1. {"water bottles", "meal packs", "snacks", "chocolate"}

    2. {"space suits", "jet packs", "tool belts", "thermal detonators"}

    3. {"parrots", "cats", "moose", "alien eggs"}

    4. {"blankets", "pillows", "eyepatches", "alarm clocks"}

  2. Make sure to verify cargoHold's structure.

  3. Query the user to select a cabinet (0-3) in the cargoHold.

  4. Use bracket notation and string interpolation to display the contents of the selected cabinet. If the user entered an invalid number, print an error message instead.

  5. Bonus to the Bonus: Modify the code to query the user for BOTH a cabinet in cargoHold AND a particular item. Use string interpolation to print a message about the selected item. If the user entered an invalid number, print an error message instead.