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
- Host: GitHub
- URL: https://github.com/luka2220/json-parser
- Owner: luka2220
- Created: 2024-04-24T01:08:57.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-05-12T19:12:21.000Z (over 1 year ago)
- Last Synced: 2024-05-12T20:24:13.768Z (over 1 year ago)
- Language: Go
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.