Skip to content

Commit

Permalink
DOC: Finish regex topic
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcus Lugg committed Sep 17, 2018
1 parent d2872c3 commit cbadc1e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ This is the list of topics I have identified for further study and investigation
| Google cloud platform in depth | 2 |
| Interacting with and building APIs (e.g. django) | 2 |
| Context managers | 2 |
| Regex (theory and practical use) | 3 | [Here](/docs/topics/regular_expressions.md) | Active |
| Regex (theory and practical use) | 3 | [Here](/docs/topics/regular_expressions.md) | Completed |
| Continuous integration and deployment; docker | 3 |
| Mapping | 3 |
| Hashes | 3 |
Expand Down
2 changes: 1 addition & 1 deletion docs/topics/_topics_overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ This is the list of topics I have identified for further study and investigation
| Google cloud platform in depth | 2 |
| Interacting with and building APIs (e.g. django) | 2 |
| Context managers | 2 |
| Regex (theory and practical use) | 3 | [Here](/docs/topics/regular_expressions.md) | Active |
| Regex (theory and practical use) | 3 | [Here](/docs/topics/regular_expressions.md) | Completed |
| Continuous integration and deployment; docker | 3 |
| Mapping | 3 |
| Hashes | 3 |
Expand Down
8 changes: 6 additions & 2 deletions docs/topics/regular_expressions.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Regular expressions

Resources:
| Topic(s) | Resource | Addressed |
| :------- | :------- | :-------: |
| Regex syntax | [RegexOne tutorial](https://regexone.com) | Yes |
| Using regex in python | [RegexOne python tutorial](https://regexone.com/references/python) | Yes |

Other resources:
* [Python docs how-to](https://docs.python.org/3/howto/regex.html#regex-howto)
* [`re` module documentation](https://docs.python.org/3/library/re.html)
* [RegexOne tutorial](https://regexone.com)

0 comments on commit cbadc1e

Please sign in to comment.