CSC 275 - Operating Systems Practicum

Dr. R. M. Siegfried

Assignment #8 - Using Regular Expressions

Due Friday, November 4, 2022 (Section 1)

Due Monday, Novebmer 16, 2022 (Section 2)

In this assignment, you will create write the regular expression that specifies the words describes below:

  1. All words that contain a 'z', followed by any single character, followed by an 'x'.
  2. All words that contain the text "banana" or "mango".
  3. All words that contain a string of at least 5 vowels (a, e, i, o, or u) in a row.
  4. All words that end with "never".
  5. All words that start with either 'q' or 's', and that also contain a double z ('zz') later in the word.

[Back to the Assignment List]