PatternMatchUtils.simpleMatch

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

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

Meta