pub fn star_match_string(pattern: &str, s: &str, delimiter: &str) -> bool
Match a delimited string with a pattern string. * matches a single part, ** matches the rest of the string (only valid at end).
*
**