wildcard_match

Function wildcard_match 

Source
fn wildcard_match(pattern: &str, text: &str) -> bool
Expand description

Simple wildcard pattern matching.

* matches any characters except /. ** matches any characters including /. ? matches a single character.