How can I write a regex in RE2 for "match strings not starting with 4 or 5"?
In PCRE I'd use ^(?!4) but RE2 doesn't support that syntax.
You can use this regex:
^[^45]
^ matches start and [^45] matches anything but 4 or 5 at start.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With