karmada/vendor/github.com/tidwall/match
chaosi-zju e2babc3d24 fix: avoid delete the key with empty value in object (lua table)
Signed-off-by: chaosi-zju <chaosi@zju.edu.cn>
2024-04-07 09:44:08 +08:00
..
LICENSE fix: avoid delete the key with empty value in object (lua table) 2024-04-07 09:44:08 +08:00
README.md fix: avoid delete the key with empty value in object (lua table) 2024-04-07 09:44:08 +08:00
match.go fix: avoid delete the key with empty value in object (lua table) 2024-04-07 09:44:08 +08:00

README.md

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

Redcon source code is available under the MIT License.