 | RangeExpressionMatch(String, Boolean) Method |
Matches the specified string against the pattern.
Namespace: Ookii.Jumbo.TopologyAssembly: Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic bool Match(
string value,
bool matchCase
)
Public Function Match (
value As String,
matchCase As Boolean
) As Boolean
public:
bool Match(
String^ value,
bool matchCase
)
member Match :
value : string *
matchCase : bool -> bool
Parameters
- value String
- The string to match.
- matchCase Boolean
- to perform a case-sensitive comparison; to perform a case-insensitive comparison.
Return Value
Boolean if
value matches the pattern; otherwise,
.
See Also