| Contact PSVM (Q & A) | Notes Below Audio | [toc] [prev] Slide 5 of 13 [next] |
|
|
| 1, 2, 3, 4, [5 (top)], 6, 7, 8, 9, 10, 11, 12, 13, [Lab] |
|
Notes for Slide 05 Here are a list of common tasks that you might want to do with more than one String in your programs. Prepending a String onto the front of another String, or appending a String onto the end of another String is perhaps the most common task that programs perform on Strings which is why the single character concatenation operator: + :is available. Searching through a list of Strings to find a particular String will involve comparing Strings for equality. Being able to sort a list of Strings will require being able to determine an order between two Strings. 1, 2, 3, 4, [5 (top)], 6, 7, 8, 9, 10, 11, 12, 13, [Lab] |