Skip to content

Commit 2e79d39

Browse files
committed
Added Regular Expressions
1 parent 3374ae8 commit 2e79d39

3 files changed

Lines changed: 427 additions & 2 deletions

File tree

README.md

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Basic cheatsheet for Python.
44

5-
## Credit
5+
## Credits
66

77
Based on the book writted by Al Sweigart, [Automate the Boring Stuff with Python](https://automatetheboringstuff.com/) under the [Creative Commons license](https://creativecommons.org/licenses/by-nc-sa/3.0/).
88

@@ -60,4 +60,23 @@ Based on the book writted by Al Sweigart, [Automate the Boring Stuff with Python
6060
- The join() and split() String Methods
6161
- Justifying Text with rjust(), ljust(), and center()
6262
- Removing Whitespace with strip(), rstrip(), and lstrip()
63-
- Copying and Pasting Strings with the pyperclip Module
63+
- Copying and Pasting Strings with the pyperclip Module
64+
- Regular Expressions
65+
- Matching Regex Objects
66+
- Grouping with Parentheses
67+
- Matching Multiple Groups with the Pipe
68+
- Optional Matching with the Question Mark
69+
- Matching Zero or More with the Star
70+
- Matching One or More with the Plus
71+
- Matching Specific Repetitions with Curly Brackets
72+
- Greedy and Nongreedy Matching
73+
- The findall() Method
74+
- Making Your Own Character Classes
75+
- The Caret and Dollar Sign Characters
76+
- The Wildcard Character
77+
- Matching Everything with Dot-Star
78+
- Matching Newlines with the Dot Character
79+
- Review of Regex Symbols
80+
- Case-Insensitive Matching
81+
- Substituting Strings with the sub() Method
82+
- Managing Complex Regexes

0 commit comments

Comments
 (0)