1
1
To pick out the blank lines in the file: (find lines that start and end with nothing in between.
2. To pick out lines with rep, word, or more. (use the alternator |)
3. To pick out lines that have at least two p's followed by any number of letters followed by
'ore'. The p's do not have to be next to each other. ( .* dot and then asterisk will find any
characters in the search text)
4. To pick out all the lines with v, z or I in them: use the class brackets [ ] to solve this one
9. To pick out lines that uses first letter alliteration - starting two words with the same letter.
( .* dot and then asterisk will find any characters in the search text)