Skip to content

A rudimentary (elementary) regex engine currently at Level 1 (Refer README).

Notifications You must be signed in to change notification settings

thekaranatic/regex-engine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Regex Engine Level 1

Syntax Meaning Example Matches DFA
Accepts empty string Empty String
a Matches the specified character k k Specified Char
* Matches 0 or more occurrence of the previous char a* "",a,aa,aaa,... Zero or More
? Matches 0 or 1 occurrence of the previous char a? "", a Zero or One
. Matches any character occurence a? "", a Any char

About

A rudimentary (elementary) regex engine currently at Level 1 (Refer README).

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published