> 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/contains.md).

# Contains

Returns true if a string contains a search

```mathematica
Contains("WINDOWS", "OWS") → true
Contains("12345", "6") → false
Contains(column, "WBC") → true
```

#### Inputs

`Contains(string, search)`

* `string` - A text value to search in
* `search` - A text value to search for
