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 6e309be71c Moved case-insensitive stuff to thompson(); fixed case-insensitivity in character classes and ranges 5 days ago
.gitignore Added gitignore 3 months ago
Makefile Disable compile-time optimization 3 months ago
compile.go Moved case-insensitive stuff to thompson(); fixed case-insensitivity in character classes and ranges 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 allCases() now takes a boolean parameter that indicates whether we are case-sensitive or not 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 Running all tests case-insensitive with the same match indices wasn't a good idea 5 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