Skip to content

Instantly share code, notes, and snippets.

@wofockham
Last active June 25, 2016 09:52
Show Gist options
  • Save wofockham/e3db2d0e21e7201f76a0 to your computer and use it in GitHub Desktop.
Save wofockham/e3db2d0e21e7201f76a0 to your computer and use it in GitHub Desktop.
  1. [10] Make a program that prints each line of its input that mentions fred. (It shouldn’t do anything for other lines of input.) Does it match if your input string is Fred, frederick, or Alfred? Make a small text file with a few lines mentioning "fred flintstone" and his friends, then use that file as input to this program and the ones later in this section.

  2. [6] Modify the previous program to allow Fred to match as well. Does it match now if your input string is Fred, frederick, or Alfred? (Add lines with these names to the text file.)

  3. [6] Make a program that prints each line of its input that contains a period (.), ignoring other lines of input. Try it on the small text file from the previous exercise: does it notice Mr. Slate?

  4. [8] Make a program that prints each line that has a word that is capitalized but not ALL capitalized. Does it match Fred but neither fred nor FRED?

  5. [8] Make a program that prints each line that has a two of the same nonwhitespace characters next to each other. It should match lines that contain words such as Mississippi, Bamm-Bamm, or llama.

  6. [8] Extra credit exercise: write a program that prints out any input line that mentions both wilma and fred.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment