PatternMatchUtils.simpleMatch

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

  1. bool simpleMatch(string pattern, string str)
    class PatternMatchUtils
    static
    bool
    simpleMatch
    (
    string pattern
    ,
    string str
    )
  2. bool simpleMatch(string[] patterns, string str)

Meta