|
2 | 2 |
|
3 | 3 | Basic cheatsheet for Python. |
4 | 4 |
|
5 | | -## Credit |
| 5 | +## Credits |
6 | 6 |
|
7 | 7 | 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/). |
8 | 8 |
|
@@ -60,4 +60,23 @@ Based on the book writted by Al Sweigart, [Automate the Boring Stuff with Python |
60 | 60 | - The join() and split() String Methods |
61 | 61 | - Justifying Text with rjust(), ljust(), and center() |
62 | 62 | - 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