Fast regular expression library supporting PCRE-style patterns
Alternative to backtracking PCRE-style regular expression engines
re2$ echo 'hello world' | re2 'h.*d'$ echo 'user@example.com' | re2 '([a-z]+)@([a-z.]+)'$ echo 'HELLO' | re2 '(?i)hello'