Go Package regexp: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 32: Line 32:
=Functions=
=Functions=


==<tt>regexp.MatchString()</tt>==
==Matching==


===<tt>regexp.MatchString()</tt>===
* <tt>[https://golang.org/pkg/regexp/#MatchString regexp.MatchString()]</tt>
==Replacement==
===<tt>regexp.ReplaceAllString()</tt>===
<syntaxhighlight lang='go'>
func (re *Regexp) ReplaceAllString(src, repl string) string
</syntaxhighlight>


* <tt>[https://golang.org/pkg/regexp/#MatchString regexp.MatchString()]</tt>
=TODO=
=TODO=
* https://blog.logrocket.com/deep-dive-regular-expressions-golang/
* https://blog.logrocket.com/deep-dive-regular-expressions-golang/
* https://gobyexample.com/regular-expressions
* https://gobyexample.com/regular-expressions

Revision as of 16:15, 18 March 2024

External

Internal

Overview

import (
	"regexp"
)

var someRegexp *regexp.Regexp
someRegexp = regexp.MustCompile("(\\D+)(\\d+),(\\d)")

groups := someRegexp.FindSubmatch([]byte(s))
if groups == nil {
  // no match 
  ...
}

entireString := groups[0]
firstGroup := groups[1]
secondGroup := groups[2]
thirdGroup := groups[3]

Functions

Matching

regexp.MatchString()

Replacement

regexp.ReplaceAllString()

func (re *Regexp) ReplaceAllString(src, repl string) string

TODO