You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
packer/website/content/docs/templates/hcl_templates/functions/string/strcontains.mdx

26 lines
389 B

---
page_title: strcontains function reference
description: |-
The `strcontains` function searches for a substring within a string.
---
# `strcontains` Function
The `strcontains` function searches for a substring within a string.
```hcl
strcontains(string, substr)
```
## Examples
```
> strcontains("hello world", "wor")
true
```
```
> strcontains("hello world", "wod")
false
```