mirror of
https://gitee.com/johng/gf
synced 2026-06-30 11:05:11 +08:00
12 lines
243 B
Go
12 lines
243 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"gitee.com/johng/gf/g/util/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])
|
|
}
|