'Declaration Public Overloads Shared Function Like( _ ByVal matchExpression As String, _ ByVal pattern As String, _ ByVal escapeCharacter As Char _ ) As Boolean
public static bool Like( string matchExpression, string pattern, char escapeCharacter )
Parameters
- matchExpression
- The string to be searched.
- pattern
- The pattern, which may include wildcard characters, to match in matchExpression.
- escapeCharacter
- The character to put in front of a wildcard character to indicate that it should be interpreted as a regular character and not as a wildcard character.
Return Value
True if matchExpression matches the pattern; otherwise, false.