jason 075d766964 first | преди 3 години | |
---|---|---|
.. | ||
.travis.yml | преди 3 години | |
LICENSE | преди 3 години | |
README.md | преди 3 години | |
match.go | преди 3 години | |
match_test.go | преди 3 години |
Match is a very simple pattern matcher where '*' matches on any number characters and '?' matches on any one character.
go get -u github.com/tidwall/match
match.Match("hello", "*llo")
match.Match("jello", "?ello")
match.Match("hello", "h*o")
Josh Baker @tidwall
Redcon source code is available under the MIT License.