pub fn match_glob(pattern: &str, text: &str) -> boolExpand description
Match a glob pattern against text
Supports:
*- matches any characters?- matches any single character[abc]- matches any character in the set
Note: Matching is case-insensitive.