xebia/regex-kata

Name: regex-kata

Owner: Xebia BV

Description: null

Created: 2016-08-16 16:54:17.0

Updated: 2016-08-16 16:55:09.0

Pushed: 2016-08-17 08:45:45.0

Homepage: null

Size: 2

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Regex Parser Code kata

Implement a regex parser with the following features:

Operator | Description ———| ———– . | Matches any single character except newline chars. | Matches beginning of input. Example: A does not match the “A” in “an A”, but does match the first “A” in “An A”. $ | Matches end of input. Example: t$ does not match the “t” in “eater”, but does match it in “eat”.

Rules

Run the testsuite with 'npm test' (don't forget to npm install first)


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.