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.
 
 
 
Go to file
Aadhavan Srinivasan 43d0cbf0a0 Use 'CONCAT' instead of literally specifiying the rune 3 months ago
.gitignore Added gitignore 6 months ago
Makefile Disable compile-time optimization 6 months ago
compile.go Allow pipes that have a missing operand - if an operand is missing, it is replaced with a zeroLengthMatchState(), which always has a zero-length match 3 months ago
go.mod Updated go.mod 6 months ago
go.sum Print matched content in color 6 months ago
main.go Renamed function calls to use new names 3 months ago
matching.go Updated function names, addeed new function 'FindString' that returns the _text_ of the match 3 months ago
misc.go Use 'CONCAT' instead of literally specifiying the rune 3 months ago
nfa.go Created a function to return a state that will always have a zero-length state 3 months ago
noteOnPCREBackreferences.txt Added note on PCRE backreferences 3 months ago
postfixNode.go Allow hyphen to be escaped inside character class 3 months ago
range2regex.go Added function (and helper functions) to generate a regex that matches all numbers in a range 5 months ago
re_test.go Added more tests; added backreference comment 3 months ago
sliceQueue.go Added 'mustPop' function which panics if slice is empty 6 months ago
stateContents.go Got rid of function that I don't need anymore 6 months ago
todo.txt Updated TODO 4 months 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) 5 months ago