BNF and EBNF Grammer Parser
06 Mar 2019- Implemented Extended Backus-Naur Form grammer parser from scratch.
- Following is a sample grammer that can be parsed using this implementation:
S := ‘Hello’ | ‘Hi’ P | P | ‘bye’
P := ‘World’ | ‘Everyone’ | ‘[A-Za-z0-9]+ ‘ | ‘a’ - Developed in Python.
- Git Repository