postmoogle/vendor/github.com/tidwall/match
2025-10-06 00:01:17 +01:00
..
LICENSE add vendoring 2022-11-16 12:08:51 +02:00
match.go add room id to !pm mailboxes, fixes #8; update deps 2025-10-06 00:01:17 +01:00
README.md add room id to !pm mailboxes, fixes #8; update deps 2025-10-06 00:01:17 +01:00

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

Match source code is available under the MIT License.