# Sandbox.SandboxSystemExtensions.WildcardMatch

```csharp
static bool WildcardMatch(string str, string wildcard)
```

Returns true if this string matches a wildcard match. Check is case insensitive.
Supports '*' (zero or more chars) and '?' (exactly one char) wildcards.
The backslash character '\' escapes '*' to match it literally.

### Parameters

- `str` (`string`)
- `wildcard` (`string`)

### Returns

`bool`

Declared in [Sandbox.SandboxSystemExtensions](/api/Sandbox.SandboxSystemExtensions).
Assembly: `Sandbox.System`.
