Completed
- Video overview & topics covered
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
Complete Regular Expressions Tutorial - With Exercises for Practice
Automatically move to the next video in the Classroom when playback concludes
- 1 - Video overview & topics covered
- 2 - Basic regex syntax building up an intuition
- 3 - Character Sets Overview [A-Za-z0-9]
- 4 - Quantifiers Guide *, +, ?, {3,5}
- 5 - Guided Exercise: Find all words that don't use vowels
- 6 - Helpful cheat sheet to remember regex syntax in the real-world
- 7 - Matching words/patterns of a specific length {3,5}
- 8 - OR operator overview
- 9 - Guided Exercise: Match valid sentences starts with capital letter, ends with period
- 10 - Character classes overview \w, \b, \d, \s
- 11 - Escaping Characters
- 12 - Practice Exercise #1: Write a regular expression to match meme text format
- 13 - Practice Exercise #2: Write a regular expression to match a specific date format
- 14 - Groups overview
- 15 - Lookahead & Lookbehind Assertions
- 16 - Practice Exercise #3: Detect if same word pops up multiple times in a sentence
- 17 - Practice Exercise #4: Password matching with rules
- 18 - Some final recommendations! additional practice, chatgpt, etc.