fn star_match(pattern: &str, value: &str, sep: &str) -> bool
Simple star matching: each segment separated by sep is compared. “*” matches any single segment, “**” matches any remaining segments.
sep