ZiniGo/vendor/github.com/tidwall/match
xucong 9a385048e7 fix get library remove note fix data format check 2024-12-19 20:40:42 +08:00
..
LICENSE fix get library remove note fix data format check 2024-12-19 20:40:42 +08:00
README.md fix get library remove note fix data format check 2024-12-19 20:40:42 +08:00
match.go fix get library remove note fix data format check 2024-12-19 20:40:42 +08: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.