2 releases
new 0.1.1 | Nov 15, 2024 |
---|---|
0.1.0 | Nov 13, 2024 |
#16 in #defined
82 downloads per month
8KB
70 lines
regex_parser
This project provides a parser for standard regular expressions (regex) based on a custom grammar. The parser is capable of recognizing regex patterns that use the following components:
- | (alternation): allows for multiple pattern options
- *, +, ? (quantifiers): indicate zero or more, one or more, or zero or one occurrences, respectively
- () (grouping): allows grouping of sub-patterns for precedence or repeated application
- Literal characters: matches any character except special characters (, ), |, *, +, and ?
parsing process
The parser reads a regex pattern as input and processes it according to the following grammar rules:
- reg ::= rexpr 'eos': A complete regex expression followed by end-of-string.
- rexpr ::= rterm { '|' rterm }: An expression consisting of one or more terms, separated by |.
- rterm ::= rfact { rfact }: A term consisting of one or more factors.
- rfact ::= prime ['*' | '+' | '?']: A factor, optionally followed by one of the quantifiers *, +, or ?.
- prime ::= rsymb | '(' rexpr ')': A primary element, which is either a single symbol or a grouped expression.
- rsymb ::= any character except '(', ')', '|', '*', '+', '?' : Any character except the reserved symbols for regex operations.
usage of parsing results
Now usage functions are not provided, but in next iterations once parsed, the regex could be validated, interpreted, or transformed into other structures, such as finite automata or abstract syntax trees, for use in matching or searching algorithms.
unit tests
Unit tests are provided to ensure that the parser correctly interprets various regex patterns.
Dependencies
~6MB
~110K SLoC