leodido / go-urn

Parser for uniform resource names as seen on RFC 8141, RFC 2141, and RFC 7643
MIT License
87 stars 11 forks source link

Parse the regular language with PCRE regex #5

Closed leodido closed 6 years ago

leodido commented 6 years ago

Golang regex are RE2. They do not support lookaheads, and a bunch of other things (look here).

Implement with a PCRE regex package, then benchmark the two implementations.

leodido commented 6 years ago

Major work done in the feature/pcre branch.

Mooving soon to the develop.