diff --git a/examples/regular-expressions/regular-expressions.go b/examples/regular-expressions/regular-expressions.go index 8d8b83e..a5a27e6 100644 --- a/examples/regular-expressions/regular-expressions.go +++ b/examples/regular-expressions/regular-expressions.go @@ -74,6 +74,3 @@ func main() { out := r.ReplaceAllFunc(in, bytes.ToUpper) fmt.Println(string(out)) } - -// todo: Find(All)?(String)?(Submatch)?(Index)? -// todo: Examples of regular expressions in #golang: https://gobyexample.com/regular-expressions One of the best areas for a "by example" approach IMO.