C# Class Dicom.Utility.Wildcard

Datei anzeigen Open project: fo-dicom/mdcm

Public Methods

Method Description
Match ( string pattern, string s ) : bool

Returns true if the string matches the pattern which may contain * and ? wildcards. Matching is done without regard to case.

Match ( string pattern, string s, bool caseSensitive ) : bool

Returns true if the string matches the pattern which may contain * and ? wildcards.

Method Details

Match() public static method

Returns true if the string matches the pattern which may contain * and ? wildcards. Matching is done without regard to case.
public static Match ( string pattern, string s ) : bool
pattern string
s string
return bool

Match() public static method

Returns true if the string matches the pattern which may contain * and ? wildcards.
public static Match ( string pattern, string s, bool caseSensitive ) : bool
pattern string
s string
caseSensitive bool
return bool