{"id":20671645,"url":"https://github.com/dpronin/regexp","last_synced_at":"2026-04-24T09:34:08.406Z","repository":{"id":185804856,"uuid":"610750416","full_name":"dpronin/regexp","owner":"dpronin","description":"The binary and library to parse input lines with regular expressions","archived":false,"fork":false,"pushed_at":"2024-04-14T11:38:28.000Z","size":110,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-10T17:31:02.109Z","etag":null,"topics":["parser","regexp"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dpronin.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2023-03-07T12:08:01.000Z","updated_at":"2023-03-08T22:08:56.000Z","dependencies_parsed_at":null,"dependency_job_id":"b30aa591-444c-438a-a4da-f0dea8a7ca16","html_url":"https://github.com/dpronin/regexp","commit_stats":null,"previous_names":["dpronin/regexp"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/dpronin/regexp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dpronin%2Fregexp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dpronin%2Fregexp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dpronin%2Fregexp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dpronin%2Fregexp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dpronin","download_url":"https://codeload.github.com/dpronin/regexp/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dpronin%2Fregexp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32216947,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T08:24:32.376Z","status":"ssl_error","status_checked_at":"2026-04-24T08:24:26.731Z","response_time":64,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["parser","regexp"],"created_at":"2024-11-16T20:28:40.506Z","updated_at":"2026-04-24T09:34:08.362Z","avatar_url":"https://github.com/dpronin.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"| Characters | Description                                                                                                                                                                   |\n|------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| \\[xyz\\]    | A character class. Matches any one of the enclosed characters.                                                                                                                |\n| [^xyz]     | A negated or complemented character class. That is, it matches\u003cbr\u003e          anything that is not enclosed in the brackets                                                     |\n| .          | 1) Matches any single character.\u003cbr\u003e2) Inside a character class, the dot loses its special meaning and matches a literal dot.                                                 |\n| x*         | Matches the preceding item \"x\" 0 or more times. |\n| x+         | Matches the preceding item \"x\" 1 or more times. Equivalent to {1,}.                                                                                                           |\n| x?         | Matches the preceding item \"x\" 0 or 1 times                                                                                                                                   |\n| x{n}       | Where \"n\" is a positive integer, matches exactly \"n\" occurrences of the preceding item \"x\"                                                                                    |\n| x{n,}      | Where \"n\" is a positive integer, matches at least \"n\" occurrences of the preceding item \"x\"                                                                                   |\n| x{n,m}     | Where \"n\" is 0 or a positive integer, \"m\" is a positive integer, and m \u003e n, matches at least \"n\" and at most \"m\" occurrences of the preceding item \"x\".                       |\n| \\d         | Matches any digit (Arabic numeral). Equivalent to [0-9]. For example, /\\d/ or /[0-9]/ matches \"2\" in \"B2 is the suite number\". |\n| \\D         | Matches any character that is not a digit (Arabic numeral). Equivalent to [^0-9]. For example, /\\D/ or /[^0-9]/ matches \"B\" in \"B2 is the suite number\". |\n| \\w         | Matches any alphanumeric character from the basic Latin alphabet, including the underscore. Equivalent to [A-Za-z0-9_]. For example, /\\w/ matches \"a\" in \"apple\", \"5\" in \"$5.28\", and \"3\" in \"3D\". |\n| \\W         | Matches any character that is not a word character from the basic Latin alphabet. Equivalent to [^A-Za-z0-9_]. For example, /\\W/ or /[^A-Za-z0-9_]/ matches \"%\" in \"50%\". |\n| \\s         | Matches a single white space character, including space, tab, form feed, line feed, and other Unicode spaces. Equivalent to [ \\f\\n\\r\\t\\v] |\n| \\S         | Matches a single character other than white space. Equivalent to [^ \\f\\n\\r\\t\\v]\n| \\t         | Matches a horizontal tab. |\n| \\r         | Matches a carriage return. |\n| \\n         | Matches a linefeed. |\n| \\v         | Matches a vertical tab. |\n| \\f         | Matches a form-feed. |\n| \\\\         | Matchers a \\\\ |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdpronin%2Fregexp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdpronin%2Fregexp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdpronin%2Fregexp/lists"}