-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8d826ca
commit 3c20124
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |