@timbray I wonder how close the match is to #Hyperscan. That’s Intel’s high-perf regex engine, which disallows backreferences, lookarounds and capture groups, much like I-Regex.
https://www.intel.com/content/www/us/en/developer/articles/technical/introduction-to-hyperscan.html
If you want more fodder for considering which regexes would work in your spec, they have a corpus of thousands available.
Hyperscan does allow `.`, `\s`, `\d` and so on, so you’re even stricter!
I kicked off my blog with a post about writing regex for GitHub Secret Scanning's custom patterns (which you get if you pay for Advanced Security):
https://aegilops.github.io/posts/regex-for-secret-scanning/
#GitHub #SecretScanning #SecureCoding #DevSecOps #regex #HyperScan
#github #secretscanning #securecoding #devsecops #regex #hyperscan