master
Charles Iliya Krempeaux 2019-06-20 17:29:47 -07:00
parent 363cdc1658
commit 59a54f4c9e
1 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,42 @@
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.MatchAndLoad(path, &target)
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"
}