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:
- All words that contain a 'z', followed by any single character, followed by
an 'x'.
- All words that contain the text "banana" or "mango".
- All words that contain a string of at least 5 vowels (a, e, i, o, or u) in a
row.
- All words that end with "never".
- 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]