Return 1 or zero for each element of string that matches any of the elements of the string array pattern, using the rules of filename pattern matching. For example, fnmatch ("a*b", {"ab"; "axyzb"; "xyzab"}) [ 1; 1; 0 ]
Return 1 or zero for each element of string that matches any of the elements of the string array pattern, using the rules of filename pattern matching. For example,
fnmatch ("a*b", {"ab"; "axyzb"; "xyzab"}) [ 1; 1; 0 ]