# StartsWith

Checks if a value starts with a search string

```mathematica
StartsWith("Central market", "Central") → true
StartsWith("123", "9") → false
```

#### Inputs

`StartWith(string, search, [isCaseSensitive])`

* `string` - A text value to search in
* `search` - Text to search for
* `[isCaseSensitive]` - **\[optional**: `true` by default\*\*]\*\* - Set `false` if search should be case **insensitive**
