mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-22 19:24:37 -05:00
Signed-off-by: Janos <86970079+janosdebugs@users.noreply.github.com> Signed-off-by: Damian Stasik <920747+damianstasik@users.noreply.github.com> Signed-off-by: Roman Grinovski <roman.grinovski@gmail.com> Co-authored-by: Damian Stasik <920747+damianstasik@users.noreply.github.com> Co-authored-by: Roman Grinovski <roman.grinovski@gmail.com>
28 lines
711 B
Plaintext
28 lines
711 B
Plaintext
---
|
|
sidebar_label: endswith
|
|
description: |-
|
|
The endswith function takes two values: a string to check and a suffix string. It returns true if the first string ends with that exact suffix.
|
|
---
|
|
|
|
# `endswith` Function
|
|
|
|
`endswith` takes two values: a string to check and a suffix string. The function returns true if the first string ends with that exact suffix.
|
|
|
|
```hcl
|
|
endswith(string, suffix)
|
|
```
|
|
|
|
## Examples
|
|
|
|
```
|
|
> endswith("hello world", "world")
|
|
true
|
|
|
|
> endswith("hello world", "hello")
|
|
false
|
|
```
|
|
|
|
## Related Functions
|
|
|
|
- [`startswith`](../../language/functions/startswith.mdx) takes two values: a string to check and a prefix string. The function returns true if the string begins with that exact prefix.
|