Match a string against the given pattern, 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 pattern the pattern to match against
@param str the string to match
@return whether the string matches the given pattern
Match a string against the given pattern, 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 pattern the pattern to match against @param str the string to match @return whether the string matches the given pattern