Made 'FindString' a method of 'Reg'

This commit is contained in:
2025-01-30 22:51:31 -05:00
parent b0b8bf23af
commit 1bfb09b6c7
2 changed files with 2 additions and 2 deletions

View File

@@ -142,7 +142,7 @@ func pruneIndices(indices []Match) []Match {
// the regex, in the given string. The return value will be an empty string in two situations:
// 1. No match was found
// 2. The match was an empty string
func FindString(regex Reg, str string) string {
func (regex Reg) FindString(str string) string {
match, err := FindNthMatch(regex, str, 1)
if err != nil {
return ""