123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- // License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
- package utils
- import (
- "fmt"
- "regexp"
- "strings"
- )
- var _ = fmt.Print
- var pat_cache = NewLRUCache[string, *regexp.Regexp](128)
- type SubMatch struct {
- Text string
- Start, End int
- }
- func Compile(pat string) (*regexp.Regexp, error) {
- return pat_cache.GetOrCreate(pat, regexp.Compile)
- }
- func MustCompile(pat string) *regexp.Regexp {
- return pat_cache.MustGetOrCreate(pat, regexp.MustCompile)
- }
- func ReplaceAll(cpat *regexp.Regexp, str string, repl func(full_match string, groupdict map[string]SubMatch) string) string {
- result := strings.Builder{}
- result.Grow(len(str) + 256)
- last_index := 0
- matches := cpat.FindAllStringSubmatchIndex(str, -1)
- names := cpat.SubexpNames()
- groupdict := make(map[string]SubMatch, len(names))
- for _, v := range matches {
- match_start, match_end := v[0], v[1]
- full_match := str[match_start:match_end]
- for k := range groupdict {
- delete(groupdict, k)
- }
- for i, name := range names {
- idx := 2 * i
- if v[idx] > -1 && v[idx+1] > -1 {
- groupdict[name] = SubMatch{Text: str[v[idx]:v[idx+1]], Start: v[idx], End: v[idx+1]}
- }
- }
- result.WriteString(str[last_index:match_start])
- result.WriteString(repl(full_match, groupdict))
- last_index = match_end
- }
- result.WriteString(str[last_index:])
- return result.String()
- }
|