Match a string against the given patterns, supporting the following simple
pattern styles: "xxx*", "*xxx", "*xxx*" and "xxx*yyy" matches (with an
arbitrary number of pattern parts), as well as direct equality.
@param patterns the patterns to match against
@param str the string to match
@return whether the string matches any of the given patterns
Match a string against the given patterns, supporting the following simple pattern styles: "xxx*", "*xxx", "*xxx*" and "xxx*yyy" matches (with an arbitrary number of pattern parts), as well as direct equality. @param patterns the patterns to match against @param str the string to match @return whether the string matches any of the given patterns