yq/pkg/yqlib/doc/operators/headers/slice-array.md

6 lines
397 B
Markdown
Raw Normal View History

2022-11-13 00:16:01 +00:00
# Slice/Splice Array
2022-10-29 07:22:30 +00:00
The slice array operator takes an array as input and returns a subarray. Like the `jq` equivalent, `.[10:15]` will return an array of length 5, starting from index 10 inclusive, up to index 15 exclusive. Negative numbers count backwards from the end of the array.
2024-03-24 00:32:02 +00:00
You may leave out the first or second number, which will refer to the start or end of the array respectively.