MCPcopy Index your code
hub / github.com/dlclark/regexp2

github.com/dlclark/regexp2 @v2.2.2

Chat with this repo
repository ↗ · DeepWiki ↗ · release v2.2.2 ↗ · + Follow
1,021 symbols 3,492 edges 56 files 301 documented · 29% 270 cross-repo links
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

regexp2 - full featured regular expressions for Go

Regexp2 is a feature-rich RegExp engine for Go. It doesn't have constant time guarantees like the built-in regexp package, but it allows backtracking and is compatible with Perl5 and .NET. You'll likely be better off with the RE2 engine from the regexp package and should only use this if you need to write very complex patterns or require compatibility with .NET.

Basis of the engine

The engine is ported from the .NET framework's System.Text.RegularExpressions.Regex engine. That engine was open sourced in 2015 under the MIT license. There are some fundamental differences between .NET strings and Go strings that required a bit of borrowing from the Go framework regex engine as well. I cleaned up a couple of the dirtier bits during the port (regexcharclass.cs was terrible), but the parse tree, code emmitted, and therefore patterns matched should be identical.

New Code Generation

For extra performance use regexp2 with regexp2cg. It is a code generation utility for regexp2 and you can likely improve your regexp runtime performance by 3-10x in hot code paths. As always you should benchmark your specifics to confirm the results. Give it a try!

Installing

This is a go-gettable library, so install is easy:

go get github.com/dlclark/regexp2/v2@latest

Changes in v2

Version 2 includes changes that may affect compatibility with existing v1 users:

  • The module path is now github.com/dlclark/regexp2/v2, so imports need to use the /v2 suffix.
  • The minimum supported Go version is now Go 1.25.
  • Changes to support https://github.com/dlclark/regexp2cg are merged in to support generated regex engines.
  • Regexp.Split is now available for splitting strings with regexp matches.
  • The new compat sub-package provides a regexp compatibility adapter with the same Find* and Match* method signatures as regexp.Regexp, plus a compat.Matcher interface that is implemented by both *regexp.Regexp and the adapter.
  • The parser, optimizer, and runner internals have changed significantly to support generated regexes and additional matching optimizations.
  • Compile and MustCompile now use variadic compile options for regex behavior and memory/performance tuning. See Compile options for more details.
  • Moved regexp2.Debug and regexp2.Compile to new regexp2.OptionDebug() and regexp2.OptionIsCodeGen() compile options.
  • Some types and constants in the syntax package have been exported or changed to support code generation.
  • Conceptually changed the goal of the regexp2.ECMAScript option to be closer to the ECMAScript standard rather than C#'s ECMAScript behavior.
  • Renamed the fields Capture.Index and Capture.Length to Capture.RuneIndex and Capture.RuneLength to be more clear that we're dealing with rune offsets.
  • Added Capture.ByteRange() to return the byte offset index and length of the captured text. This requires some additional processing to be done behind the scenes the first time it's called for a given capture to convert the native rune offsets to byte offsets.

Usage

Usage is similar to the Go regexp package. Just like in regexp, you start by converting a regex into a state machine via the Compile or MustCompile methods. They ultimately do the same thing, but MustCompile will panic if the regex is invalid. You can then use the provided Regexp struct to find matches repeatedly. A Regexp struct is safe to use across goroutines.

re := regexp2.MustCompile(`Your pattern`)
if isMatch, _ := re.MatchString(`Something to match`); isMatch {
    //do something
}

The only error that the *Match* methods should return is a Timeout if you set the re.MatchTimeout field. Any other error is a bug in the regexp2 package. If you need more details about capture groups in a match then use the FindStringMatch method, like so:

if m, _ := re.FindStringMatch(`Something to match`); m != nil {
    // the whole match is always group 0
    fmt.Printf("Group 0: %v\n", m.String())

    // you can get all the groups too
    gps := m.Groups()

    // a group can be captured multiple times, so each cap is separately addressable
    fmt.Printf("Group 1, first capture", gps[1].Captures[0].String())
    fmt.Printf("Group 1, second capture", gps[1].Captures[1].String())
}

Group 0 is embedded in the Match. Group 0 is an automatically-assigned group that encompasses the whole pattern. This means that m.String() is the same as m.Group.String() and m.Groups()[0].String()

The last capture is embedded in each group, so g.String() will return the same thing as g.Capture.String() and g.Captures[len(g.Captures)-1].String().

If you want to find multiple matches from a single input string you should use the FindNextMatch method. For example, to implement a function similar to regexp.FindAllString:

func regexp2FindAllString(re *regexp2.Regexp, s string) []string {
    var matches []string
    m, _ := re.FindStringMatch(s)
    for m != nil {
        matches = append(matches, m.String())
        m, _ = re.FindNextMatch(m)
    }
    return matches
}

FindNextMatch is optmized so that it re-uses the underlying string/rune slice.

The internals of regexp2 always operate on []rune so RuneIndex and RuneLength data in a Match always reference a position in runes rather than bytes (even if the input was given as a string). ByteRange() provides UTF-8 byte offsets, matching the original string input for string APIs. It's advisable to use the provided String() methods when you do not need explicit offsets. ByteRange() lazily caches byte offsets on the shared match text, so the first call on captures from the same match is not safe to run concurrently with other ByteRange() calls on that match.

Unicode character classes

regexp2 supports Unicode character classes with \p{...} and negated classes with \P{...}. Outside ECMAScript Unicode mode, it also accepts the RE2/PCRE-style one-letter form, such as \pL.

The class name may be a Go Unicode category, category alias, script, or property exposed by the Go standard library Unicode tables. For example:

letter := regexp2.MustCompile(`\p{L}+`)
katakana := regexp2.MustCompile(`\p{Katakana}+`)
notEmoji := regexp2.MustCompile(`\P{Emoji}+`)

regexp2 also supports Unicode property selection syntax in the form \p{property=value}. Property and value aliases are matched loosely: case, hyphens, and underscores are ignored. For example, \p{GCB=RI}, \p{grapheme_cluster_break=regional_indicator}, and \p{grapheme-cluster-break=regional-indicator} all refer to the same class.

Valid property names and aliases come from Unicode 17.0.0 PropertyAliases.txt. Valid property values and aliases come from Unicode 17.0.0 PropertyValueAliases.txt. The generated tables use Unicode 17.0.0 data from DerivedCoreProperties.txt, emoji/emoji-data.txt, auxiliary/GraphemeBreakProperty.txt, auxiliary/WordBreakProperty.txt, and auxiliary/SentenceBreakProperty.txt for the package-local properties whose data changes more frequently than the Go standard library tables.

regexp compatibility adapter

The github.com/dlclark/regexp2/v2/compat package provides an adapter for callers that want the same Find* and Match* method signatures as the standard library's regexp.Regexp, while still using the regexp2 engine.

import (
    "github.com/dlclark/regexp2/v2"
    "github.com/dlclark/regexp2/v2/compat"
)

re := compat.MustCompile(`Your pattern`, regexp2.RE2)
if re.MatchString(`Something to match`) {
    // do something
}

matches := re.FindAllString(`abc axbc`, -1)
_ = matches

You can also wrap an existing compiled regexp:

base := regexp2.MustCompile(`Your pattern`)
re := compat.Wrap(base)

The adapter includes the standard-library matching surface: Match, MatchString, MatchReader, and all Find(All)?(String)?(Submatch)?(Index)? methods. Index-returning methods use UTF-8 byte offsets like regexp, not regexp2's rune offsets.

The package also defines compat.Matcher, a common interface implemented by both *regexp.Regexp and *compat.Regexp. Use it when code should accept either the standard library engine or a regexp2-backed adapter:

func findWords(re compat.Matcher, input string) []string {
    return re.FindAllString(input, -1)
}

Because those standard-library method signatures do not return errors, the adapter panics if the wrapped regexp2 matcher returns an error such as a match timeout. Use the main regexp2 APIs directly when you need to handle timeouts as errors.

Compile options

Compile and MustCompile take variadic compile options. Most users can omit them and get default regex behavior plus bounded shared pools for rune buffers and replacement output buffers, plus per-regexp caches for parsed replacement patterns and ASCII character class bitmaps.

Regex option constants can be passed directly, individually or as a bitmask:

re := regexp2.MustCompile(`Your pattern`, regexp2.IgnoreCase, regexp2.Singleline)
re = regexp2.MustCompile(`Your pattern`, regexp2.IgnoreCase|regexp2.Singleline)

Performance tuning options override the default cache settings:

re := regexp2.MustCompile(`Your pattern`,
    regexp2.IgnoreCase,
    regexp2.OptionMaxCachedRuneBufferLength(64*1024),
    regexp2.OptionMaxCachedReplacerDataEntries(8),
)

Compile-only options configure behavior that is not settable from the pattern:

re := regexp2.MustCompile(`(?<first>This) (is)`, regexp2.OptionMaintainCaptureOrder())

The defaults are intentionally bounded:

Option Default Used by Working-set growth Tradeoffs
OptionMaintainCaptureOrder() false Parser capture-slot assignment for mixed named and unnamed captures. None at match time. This changes compile-time capture numbering only. Keeps named and unnamed captures in pattern order instead of appending named captures after unnamed captures. This can change numeric backreference meaning, so it is caller-controlled rather than an inline regex option.
OptionDebug() false Compile dumps and runner tracing. Debug output volume only. Useful for diagnostics, but it can produce noisy output and slower traced matching.
OptionIsCodeGen() false Compile-time find-optimization analysis for regexp2cg. Per compiled regexp, during Compile or MustCompile. Enables more expensive analysis intended for generated engines. Do not use it for normal interpreter execution; the interpreter defaults intentionally avoid this extra compile-time cost.
OptionMaxCachedRuneBufferLength(n) 256K runes String APIs that run through pooled runners, such as MatchString and replacement-pattern Replace, when converting input strings to the engine's internal []rune representation. Process-wide shared sync.Pool retention by size class. This does not grow per compiled regexp or per input string; the practical working set follows recent and concurrent use across all regexps and can be dropped by GC. Raising this lets calls use larger pooled rune buffers and can reduce allocations for repeated matches against large strings. Lowering it prevents larger buffers from being borrowed or returned, so large inputs allocate directly.
OptionMaxCachedReplaceBufferLength(n) 256 KB Replacement-pattern Replace calls that build output through a shared byte buffer. Process-wide shared sync.Pool retention by size class after replacement-pattern Replace runs. It does not grow from evaluator-based ReplaceFunc output and is shared across compiled regexps. Raising this lets larger replacement outputs use pooled buffers and can reduce allocations. Lowering it prevents larger output buffers from being retained, so large replacements allocate directly.
OptionMaxCachedReplacerDataEntries(n) 16 Replace with replacement pattern strings, after the replacement pattern is parsed into reusable replacement data. Per compiled regexp. The cache grows as distinct cacheable replacement strings are used with Replace, up to this entry count. Raising this helps when a single compiled regexp is used with many recurring replacement patterns. It increases per-regexp cache memory and lock-protected cache bookkeeping. Setting it to 0 disables this cache.
OptionMaxCachedReplacerDataBytes(n) 4 KB The parsed replacement-pattern cache. Replacement strings longer than this are parsed for the call but not retained. Per compiled regexp, combined with OptionMaxCachedReplacerDataEntries. Only replacement strings whose source text is at or below this size can add parsed data to the cache. Raising this helps if large replacement patterns are reused. It can retain more memory per cached replacement. Lowering it avoids keeping unusual large replacement patterns around.
OptionDisableCharClassASCIIBitmap() false Compile-time preparation of character classes and first-character prefix sets. By default, character classes with ASCII membership get a small bitmap used by CharIn. Per compiled regexp, during Compile or MustCompile. Each eligible character class can hold one small bitmap; this does not scale with match concurrency or input size.

Extension points exported contracts — how you extend this code

Matcher (Interface)
Matcher is the common matching interface implemented by regexp.Regexp and this package's Regexp adapter. It includes th [1 …
compat/interface.go
MatchEvaluator (FuncType)
MatchEvaluator is a function that takes a match and returns a replacement string to be used
replace.go
CompileOption (Interface)
CompileOption configures Compile and MustCompile.
options.go
StringPrefixFilter (FuncType)
StringPrefixFilter optionally searches string input before the engine decodes it to runes. It returns a byte index for a
stringprefixfilter.go

Core symbols most depended-on inside this repo

MustCompile
called by 178
regexp.go
MatchString
called by 107
compat/interface.go
charsRight
called by 90
syntax/parser.go
String
called by 86
match.go
rightChar
called by 76
syntax/parser.go
getErr
called by 74
syntax/parser.go
Compile
called by 55
regexp.go
FindStringMatch
called by 51
regexp.go

Shape

Function 547
Method 403
Struct 56
TypeAlias 9
FuncType 3
Interface 3

Languages

Go100%

Modules by API surface

runner.go95 symbols
regexp_test.go89 symbols
syntax/parser.go86 symbols
syntax/charclass.go71 symbols
syntax/tree.go69 symbols
regexp_performance_test.go47 symbols
regexp.go44 symbols
compat/regexp.go38 symbols
match.go33 symbols
syntax/prefix.go31 symbols
helpers/indexof.go28 symbols
syntax/prefixanalyzer.go27 symbols

For agents

$ claude mcp add regexp2 \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact