> For the complete documentation index, see [llms.txt](https://docs.tabula.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tabula.io/data-transformation/formulas/string-functions/endswith.md).

# EndsWith

Checks if a value ends with a search string

```mathematica
EndsWith("Australia", "ia") → true
EndsWith("Financial position", "e") → false
```

#### Inputs

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

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