Reg Expressions Puzzle Notes - savannahc502/SavC-TechJournal-SEC260 GitHub Wiki
Website: https://regexcrossword.com/
- Attempting Puzzles 1-5
Here are some sites which can help level up your RegEx:
Puzzle 1 Notes
- E|S > E or S
- [E-S]+ > Any of the letters between the range of E and S can occur one or more times
Puzzle 2 Notes
- Cool that both sides have different requirements!
Puzzle 3 Notes
- Think about the hard requirements first (like H on the vertical) and go from there
Puzzle 4 Notes
- One again, look for the limitations first (how does the two different horizontal rules affect each other?
Puzzle 5 Notes
- Capital special characters mean that it CANNOT be that type
- Reminder of the special characters:
- Special characters:
\w --> word(letter)
\d --> digit
\s --> whitespace
- Black = whitespace
- Special characters:
- Reminder of the special characters: