tile38/vendor/github.com/tidwall/match/README.md

30 lines
557 B
Markdown
Raw Normal View History

2021-01-26 01:11:55 +03:00
# Match
[![GoDoc](https://godoc.org/github.com/tidwall/match?status.svg)](https://godoc.org/github.com/tidwall/match)
Match is a very simple pattern matcher where '*' matches on any
number characters and '?' matches on any one character.
2021-01-26 01:11:55 +03:00
## Installing
```
go get -u github.com/tidwall/match
```
2021-01-26 01:11:55 +03:00
## Example
```go
match.Match("hello", "*llo")
match.Match("jello", "?ello")
match.Match("hello", "h*o")
```
2021-01-26 01:11:55 +03:00
## Contact
Josh Baker [@tidwall](http://twitter.com/tidwall)
2021-01-26 01:11:55 +03:00
## License
Redcon source code is available under the MIT [License](/LICENSE).