{"id":21839850,"url":"https://github.com/rustkas/regular-expressions-cookbook","last_synced_at":"2025-09-23T18:17:15.638Z","repository":{"id":92076001,"uuid":"397229316","full_name":"rustkas/Regular-Expressions-Cookbook","owner":"rustkas","description":"This is a rebar3 projects based source code on the Jan Goyvaerts and Steven Levithan book \"Regular Expressions Cookbook, 2nd Edition\" https://www.oreilly.com/library/view/regular-expressions-cookbook/9781449327453/","archived":false,"fork":false,"pushed_at":"2021-09-14T06:55:22.000Z","size":109,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-01-26T10:44:30.363Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Erlang","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rustkas.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-08-17T11:32:22.000Z","updated_at":"2021-09-14T06:55:24.000Z","dependencies_parsed_at":null,"dependency_job_id":"b2ca9975-9d34-46d7-af2e-633b30a77a0b","html_url":"https://github.com/rustkas/Regular-Expressions-Cookbook","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rustkas%2FRegular-Expressions-Cookbook","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rustkas%2FRegular-Expressions-Cookbook/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rustkas%2FRegular-Expressions-Cookbook/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rustkas%2FRegular-Expressions-Cookbook/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rustkas","download_url":"https://codeload.github.com/rustkas/Regular-Expressions-Cookbook/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244821820,"owners_count":20515992,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-27T21:20:57.953Z","updated_at":"2025-09-23T18:17:10.602Z","avatar_url":"https://github.com/rustkas.png","language":"Erlang","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Regular Expressions Cookbook\n\n## rebar3 projects related to book's chapters\n\n* [Basic Regular Expression Skills](code/ch02/basic)\n    * [2.1. Match Literal Text](code/ch02/basic/lib/recipe_01)\n    * [2.2 Match Nonprintable Characters](code/ch02/basic/lib/recipe_02)\n    * [2.3 Match One of Many Characters](code/ch02/basic/lib/recipe_03) \n    * [2.4 Match Any Character](code/ch02/basic/lib/recipe_04)\n    * [2.5 Match Something at the Start and/or the End of a Line](code/ch02/basic/lib/recipe_05)\n    * [2.6 Match Whole Words](code/ch02/basic/lib/recipe_06)\n    * [2.7 Unicode Code Points, Categories, Blocks, and Scripts](code/ch02/basic/lib/recipe_07)\n    * [2.8 Match One of Several Alternatives](code/ch02/basic/lib/recipe_08)\n    * [2.9 Group and Capture Parts of the Match](code/ch02/basic/lib/recipe_09) \n    * [2.10 Match Previously Matched Text Again](code/ch02/basic/lib/recipe_10)\n    * [2.11 Capture and Name Parts of the Match](code/ch02/basic/lib/recipe_11)\n    * [2.12 Repeat Part of the Regex a Certain Number of Times](code/ch02/basic/lib/recipe_12) \n    * [2.13 Choose Minimal or Maximal Repetition](code/ch02/basic/lib/recipe_13)\n    * [2.14 Eliminate Needless Backtracking](code/ch02/basic/lib/recipe_14)\n    * [2.15 Prevent Runaway Repetition](code/ch02/basic/lib/recipe_15) \n    * [2.16 Test for a Match Without Adding It to the Overall Match](code/ch02/basic/lib/recipe_16)\n    * [2.17 Match One of Two Alternatives Based on a Condition](code/ch02/basic/lib/recipe_17)\n    * [2.18 Add Comments to a Regular Expression](code/ch02/basic/lib/recipe_18)\n    * [2.19 Insert Literal Text into the Replacement Text](code/ch02/basic/lib/recipe_19)\n    * [2.20 Insert the Regex Match into the Replacement Text](code/ch02/basic/lib/recipe_20)\n    * [2.21 Insert Part of the Regex Match into the Replacement Text](code/ch02/basic/lib/recipe_21) \n    * [2.22 Insert Match Context into the Replacement Text](code/ch02/basic/lib/recipe_22)\n* [Programming with Regular Expressions](code/ch03/programming)\n    * [3.1. Literal Regular Expressions in Source Code](code/ch03/programming/lib/recipe_01)\n    * [3.2. Import the Regular Expression Library](code/ch03/programming/lib/recipe_02)\n    * [3.3. Create Regular Expression Objects](code/ch03/programming/lib/recipe_03) \n    * [3.4. Set Regular Expression Options](code/ch03/programming/lib/recipe_04)\n    * [3.5. Test If a Match Can Be Found Within a Subject String](code/ch03/programming/lib/recipe_05)\n    * [3.6. Test Whether a Regex Matches the Subject String Entirely](code/ch03/programming/lib/recipe_06)\n    * [3.7. Retrieve the Matched Text](code/ch03/programming/lib/recipe_07)\n    * [3.8. Determine the Position and Length of the Match](code/ch03/programming/lib/recipe_08)\n    * [3.9. Retrieve Part of the Matched Text](code/ch03/programming/lib/recipe_09) \n    * [3.10. Retrieve a List of All Matches](code/ch03/programming/lib/recipe_10)\n    * [3.11. Iterate over All Matches](code/ch03/programming/lib/recipe_11)\n    * [3.12. Validate Matches in Procedural Code](code/ch03/programming/lib/recipe_12) \n    * [3.13. Find a Match Within Another Match](code/ch03/programming/lib/recipe_13)\n    * [3.14. Replace All Matches](code/ch03/programming/lib/recipe_14)\n    * [3.15. Replace Matches Reusing Parts of the Match](code/ch03/programming/lib/recipe_15) \n    * [3.16. Replace Matches with Replacements Generated in Code](code/ch03/programming/lib/recipe_16)\n    * [3.17. Replace All Matches Within the Matches of Another Regex](code/ch03/programming/lib/recipe_17)\n    * [3.18. Replace All Matches Between the Matches of Another Regex](code/ch03/programming/lib/recipe_18)\n    * [3.19. Split a String](code/ch03/programming/lib/recipe_19)\n    * [3.20. Split a String, Keeping the Regex Matches](code/ch03/programming/lib/recipe_20)\n    * [3.21. Search Line by Line](code/ch03/programming/lib/recipe_21) \n    * [3.22 Construct a Parser](code/ch03/programming/lib/recipe_22)\n \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frustkas%2Fregular-expressions-cookbook","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frustkas%2Fregular-expressions-cookbook","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frustkas%2Fregular-expressions-cookbook/lists"}