mirror of
https://github.com/stedolan/jq.git
synced 2024-05-11 05:55:39 +00:00
Documented del
command
This commit is contained in:
@@ -607,6 +607,20 @@ sections:
|
|||||||
input: '[[0,1], ["a","b","c"]]'
|
input: '[[0,1], ["a","b","c"]]'
|
||||||
output: ['[false, true]']
|
output: ['[false, true]']
|
||||||
|
|
||||||
|
- title: `del`
|
||||||
|
body: |
|
||||||
|
|
||||||
|
The builtin function `del` removes a key and its corresponding
|
||||||
|
value from an object.
|
||||||
|
|
||||||
|
examples:
|
||||||
|
- program: 'del(.foo)'
|
||||||
|
input: '[{"foo": 42, "bar": 9001, "baz": 42}]'
|
||||||
|
output: ['{"bar": 9001, "baz": 42}']
|
||||||
|
- program: 'del(.[1, 2])'
|
||||||
|
input: '[["foo", "bar", "baz"]]'
|
||||||
|
output: ['["foo"]']
|
||||||
|
|
||||||
- title: `to_entries`, `from_entries`, `with_entries`
|
- title: `to_entries`, `from_entries`, `with_entries`
|
||||||
body: |
|
body: |
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user