Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.
/ parse-it Public archive

A natural language parser example

Notifications You must be signed in to change notification settings

WW-Digital/parse-it

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Parse It

A natural language query identifier

Goal

The goal of this project is to parse an incoming String, identify words, and return back the results.

Response instructions

The response should be formatted as follows:

Query: 'Today is your Hello World test!'

Response:

[ { matchedWord: 'Today', type: 'date', value: "10-08-2018" }, { matchedWord: 'is', type: 'stop word', value: 'is' }, { matchedWord: 'your', type: 'stop word', value: 'your' }, { matchedWord: 'Hello', type: 'unknown', value: 'hello' }, { matchedWord: 'World', type: 'unknown', value: 'world' }, { matchedWord: 'test', type: 'unknown', value: 'test' } ]

About

A natural language parser example

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published