mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-21 10:47:34 -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>
32 lines
669 B
Plaintext
32 lines
669 B
Plaintext
---
|
|
sidebar_label: slice
|
|
description: The slice function extracts some consecutive elements from within a list.
|
|
---
|
|
|
|
# `slice` Function
|
|
|
|
`slice` extracts some consecutive elements from within a list.
|
|
|
|
```hcl
|
|
slice(list, startindex, endindex)
|
|
```
|
|
|
|
`startindex` is inclusive, while `endindex` is exclusive. This function returns
|
|
an error if either index is outside the bounds of valid indices for the given
|
|
list.
|
|
|
|
## Examples
|
|
|
|
```
|
|
> slice(["a", "b", "c", "d"], 1, 3)
|
|
[
|
|
"b",
|
|
"c",
|
|
]
|
|
```
|
|
|
|
## Related Functions
|
|
|
|
* [`substr`](../../language/functions/substr.mdx) performs a similar function for characters in a
|
|
string, although it uses a length instead of an end index.
|