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 125590d334 Replaced literal brackets with LBRACKET and RBRACKET metacharacters 5 days ago
.gitignore Added gitignore 3 months ago
Makefile Disable compile-time optimization 3 months ago
compile.go Removed some panics with error throwing; changed some comments; removed use of mustPop() in parsing Kleene star - I use pop() and then throw an error if pop() returns an error 5 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 weeks ago
matching.go Reformatted error messages according to Go guidelines 6 days ago
misc.go Removed unused function 5 days ago
nfa.go Removed a type that I wasn't using 6 days ago
noteOnPCREBackreferences.txt Added note on PCRE backreferences 7 days ago
postfixNode.go Changed error messages - removed capitalization and punctuation to find Go's error message guidelines 6 days ago
range2regex.go Replaced literal brackets with LBRACKET and RBRACKET metacharacters 5 days ago
re_test.go Added POSIX charclass tests 6 days ago
sliceQueue.go Reformatted error messages according to Go guidelines 6 days ago
stateContents.go Got rid of function that I don't need anymore 3 months ago
todo.txt Updated TODO 4 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