RegExpBuilder
RegExpBuilder copied to clipboard
A library for building RegExpPattrerns
Hey there, I realize it has been quite some time since this was updated, but I was wondering if you happened to have done any performance benchmarks in the past...
Try to find exact one "**bitbucket***" want work var r= new RegExpBuilder().Exactly(1).Of("bitbucket*"); _Message: Test method RegExpBuilderTests.RegExpBuilderTests.OfNeedEscapeSimple threw exception: System.ArgumentException: "bitbucket*{1,1}" wird analysiert - Geschachtelter Quantifizierer {._ you shouldt add :...
Add a ToRegExpOptimized() that applies tips from: https://www.rexegg.com/regex-optimizations.html Make sure to perf test before building.
As it turns out, I mis-classified the meta sequences as anchors/character classes due to some references I used when creating the library. This is a bug that needs to be...