Files
gf/geg/util/gregex/gregex.go
2019-02-02 16:35:26 +08:00

12 lines
243 B
Go

package main
import (
"fmt"
"github.com/gogf/gf/g/text/gregex"
)
func main() {
match, _ := gregex.MatchString(`(\w+).+\-\-\s*(.+)`, `GF is best! -- John`)
fmt.Printf(`%s says "%s" is the one he loves!`, match[2], match[1])
}