Skip to content

Commit

Permalink
Day 15: Regular Expressions
Browse files Browse the repository at this point in the history
  • Loading branch information
ehtisham-sadiq committed Jan 22, 2023
1 parent 8d826ca commit 3c20124
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Day 15: Regular Expressions/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# 30-Days-of-Python-Programming

## Day 15: Regular Expressions

**Learning Agenda:**
- Introduction to Regular Expressions and their uses
- Understanding the syntax and structure of regular expressions
- Using regular expressions to match patterns in text
- Understanding the use of special characters `(., ^, $, *, +,?)`
- Using the re module to work with regular expressions in Python
- Understanding the use of the search() and findall() methods
- Using the split() and sub() methods
- Understanding the use of the compile() method
- Time and space complexity of regular expressions
- Using regular expressions in combination with other programming constructs
- Applications of regular expressions in real-world problem solving (e.g. text processing, validation)
- Understanding the advantages and disadvantages of using regular expressions
- Implementing regular expressions in Python
- Some basic examples of how to use these concepts in practice

0 comments on commit 3c20124

Please sign in to comment.