An NFA-based regex engine with a library and command-line tool.
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Aadhavan Srinivasan a14ab81697 Updated function names, addeed new function 'FindString' that returns the _text_ of the match 2 days ago
.gitignore Added gitignore 3 months ago
Makefile Disable compile-time optimization 3 months ago
compile.go New features, changed character class behavior 2 days ago
go.mod Updated go.mod 3 months ago
go.sum Print matched content in color 3 months ago
main.go Renamed function calls to use new names 2 days ago
matching.go Updated function names, addeed new function 'FindString' that returns the _text_ of the match 2 days ago
misc.go Added functions to find if a character is a valid hex value and a valid octal value 2 days ago
nfa.go Fixed bug where I used the 'lookaroundNumCaptureGroups' member of the wrong State struct 2 weeks ago
postfixNode.go Added a new class 'CHARCLASS', which represents a character class with some other postfixNodes in it. The 'except' field now contains a list of postfixNodes rather than runes 2 days ago
range2regex.go Added function (and helper functions) to generate a regex that matches all numbers in a range 2 months ago
re_test.go Added another test, changed function calls to match new names 2 days ago
sliceQueue.go Added 'mustPop' function which panics if slice is empty 3 months ago
stateContents.go Got rid of function that I don't need anymore 3 months ago
todo.txt Updated TODO 3 weeks ago
unique_array.go Got rid of list for uniq_arr (O(n) deletion) and instead have separate method to create list (O(n) list creation) 3 months ago