matrix-pretix/vendor/github.com/tidwall/match
Luca 4fb9fa2060
continuous-integration/drone/push Build is passing Details
Vendorize dependencies
2022-07-25 02:32:08 +02:00
..
LICENSE Vendorize dependencies 2022-07-25 02:32:08 +02:00
README.md Vendorize dependencies 2022-07-25 02:32:08 +02:00
match.go Vendorize dependencies 2022-07-25 02:32:08 +02:00

README.md

Match

GoDoc

Match is a very simple pattern matcher where '*' matches on any number characters and '?' matches on any one character.

Installing

go get -u github.com/tidwall/match

Example

match.Match("hello", "*llo") 
match.Match("jello", "?ello") 
match.Match("hello", "h*o") 

Contact

Josh Baker @tidwall

License

Redcon source code is available under the MIT License.