├── LICENSE ├── README.md ├── Resources_list.md ├── Version_changes.md ├── code_snippets ├── Alternation_and_Grouping.py ├── Anchors.py ├── Character_class.py ├── Dot_metacharacter_and_Quantifiers.py ├── Escaping_metacharacters.py ├── Flags.py ├── Gotchas.py ├── Groupings_and_backreferences.py ├── Interlude_Common_tasks.py ├── Lookarounds.py ├── Unicode.py ├── Working_with_matched_portions.py ├── re_introduction.py └── regex_module.py ├── exercises ├── Exercise_solutions.md ├── Exercises.md ├── expected.md └── sample.md ├── images ├── debuggex.png ├── find_replace.png ├── info.svg ├── level_two.png ├── password_check.png ├── py_regex_ls.png ├── pyregex_exercises.png ├── pyregex_playground.png ├── regex101.png └── warning.svg ├── interactive_exercises └── README.md ├── py_regex.md └── sample_chapters └── py_regex_sample.pdf /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/README.md -------------------------------------------------------------------------------- /Resources_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/Resources_list.md -------------------------------------------------------------------------------- /Version_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/Version_changes.md -------------------------------------------------------------------------------- /code_snippets/Alternation_and_Grouping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/code_snippets/Alternation_and_Grouping.py -------------------------------------------------------------------------------- /code_snippets/Anchors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/code_snippets/Anchors.py -------------------------------------------------------------------------------- /code_snippets/Character_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/code_snippets/Character_class.py -------------------------------------------------------------------------------- /code_snippets/Dot_metacharacter_and_Quantifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/code_snippets/Dot_metacharacter_and_Quantifiers.py -------------------------------------------------------------------------------- /code_snippets/Escaping_metacharacters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/code_snippets/Escaping_metacharacters.py -------------------------------------------------------------------------------- /code_snippets/Flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/code_snippets/Flags.py -------------------------------------------------------------------------------- /code_snippets/Gotchas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/code_snippets/Gotchas.py -------------------------------------------------------------------------------- /code_snippets/Groupings_and_backreferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/code_snippets/Groupings_and_backreferences.py -------------------------------------------------------------------------------- /code_snippets/Interlude_Common_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/code_snippets/Interlude_Common_tasks.py -------------------------------------------------------------------------------- /code_snippets/Lookarounds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/code_snippets/Lookarounds.py -------------------------------------------------------------------------------- /code_snippets/Unicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/code_snippets/Unicode.py -------------------------------------------------------------------------------- /code_snippets/Working_with_matched_portions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/code_snippets/Working_with_matched_portions.py -------------------------------------------------------------------------------- /code_snippets/re_introduction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/code_snippets/re_introduction.py -------------------------------------------------------------------------------- /code_snippets/regex_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/code_snippets/regex_module.py -------------------------------------------------------------------------------- /exercises/Exercise_solutions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/exercises/Exercise_solutions.md -------------------------------------------------------------------------------- /exercises/Exercises.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/exercises/Exercises.md -------------------------------------------------------------------------------- /exercises/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/exercises/expected.md -------------------------------------------------------------------------------- /exercises/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/exercises/sample.md -------------------------------------------------------------------------------- /images/debuggex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/images/debuggex.png -------------------------------------------------------------------------------- /images/find_replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/images/find_replace.png -------------------------------------------------------------------------------- /images/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/images/info.svg -------------------------------------------------------------------------------- /images/level_two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/images/level_two.png -------------------------------------------------------------------------------- /images/password_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/images/password_check.png -------------------------------------------------------------------------------- /images/py_regex_ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/images/py_regex_ls.png -------------------------------------------------------------------------------- /images/pyregex_exercises.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/images/pyregex_exercises.png -------------------------------------------------------------------------------- /images/pyregex_playground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/images/pyregex_playground.png -------------------------------------------------------------------------------- /images/regex101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/images/regex101.png -------------------------------------------------------------------------------- /images/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/images/warning.svg -------------------------------------------------------------------------------- /interactive_exercises/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/interactive_exercises/README.md -------------------------------------------------------------------------------- /py_regex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/py_regex.md -------------------------------------------------------------------------------- /sample_chapters/py_regex_sample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/py_regular_expressions/HEAD/sample_chapters/py_regex_sample.pdf --------------------------------------------------------------------------------