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