summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/tidwall/match/README.md
blob: 5fdd4cf63db6c519d29c8be526e1c8674450a198 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# 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.

## Installing

```
go get -u github.com/tidwall/match
```

## Example

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


## Contact

Josh Baker [@tidwall](http://twitter.com/tidwall)

## License

Redcon source code is available under the MIT [License](/LICENSE).