diff --git a/README.md b/README.md index c8c1ebe..3034c9a 100644 --- a/README.md +++ b/README.md @@ -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 | diff --git a/docs/topics/_topics_overview.md b/docs/topics/_topics_overview.md index bf7c047..a1a5360 100644 --- a/docs/topics/_topics_overview.md +++ b/docs/topics/_topics_overview.md @@ -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 | diff --git a/docs/topics/regular_expressions.md b/docs/topics/regular_expressions.md index e974329..f939ec4 100644 --- a/docs/topics/regular_expressions.md +++ b/docs/topics/regular_expressions.md @@ -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)