 | RangeExpression.Match Method (String, Boolean) |
Matches the specified string against the pattern.
Namespace:
Ookii.Jumbo.Topology
Assembly:
Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 2.0.0
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
- Type: System.String
The string to match. - matchCase
- Type: System.Boolean
true to perform a case-sensitive comparison; false to perform a case-insensitive comparison.
Return Value
Type:
Booleantrue if
value matches the pattern; otherwise,
false.
See Also