An open API service indexing awesome lists of open source software.

https://github.com/luka2220/json-parser

Lexical Analyzer and Syntactic Analysis for parsing JSON files
https://github.com/luka2220/json-parser

Last synced: 8 months ago
JSON representation

Lexical Analyzer and Syntactic Analysis for parsing JSON files

Awesome Lists containing this project

README

          

# JSON Parser
## Overview
This project is a JSON parser implemented in Golang. The parser reads JSON files from the command line and determines whether they are valid JSON or not. It consists of two main components: lexical analysis and syntactic analysis.

### Features
* Lexical Analysis: Tokenizes the JSON file by breaking down the sequence of characters into meaningful tokens.
* Syntactic Analysis: Analyzes the list of tokens to match it to a formal grammar.
* Parser: Takes text as input and builds a data structure that represents the input JSON.