go-pathmatch/example_compile_test.go

43 lines
767 B
Go
Raw Normal View History

2019-06-21 00:29:47 +00:00
package pathmatch_test
import (
"github.com/reiver/go-pathmatch"
"fmt"
)
func ExampleCompile() {
pattern, err := pathmatch.Compile("/v1/users/{user_id}/contacts/{contact_type}")
if nil != err {
fmt.Printf("ERROR: %s\n", err)
return
}
target := struct{
UserID string `match:"user_id"`
ContactType string `match:"contact_type"`
}{}
var path = "/v1/users/123/contacts/e-mail"
matched, err := pattern.FindAndLoad(path, &target)
2019-06-21 00:29:47 +00:00
if nil != err {
fmt.Printf("ERROR: %s\n", err)
return
}
if !matched {
fmt.Printf("The path %q did not match.", path)
return
}
fmt.Printf("user_id = %q\n", target.UserID)
fmt.Printf("contact_type = %q\n", target.ContactType)
// Output:
// user_id = "123"
// contact_type = "e-mail"
}