Answers for "regex match in golang"

Go
0

string matching regex in go

match, _ := regexp.MatchString("p([a-z]+)ch", "peach")
    fmt.Println(match)
Posted by: Guest on October-25-2021

Browse Popular Code Answers by Language