1
0
mirror of https://github.com/stedolan/jq.git synced 2024-05-11 05:55:39 +00:00

Document split function

This commit is contained in:
Nicolas Williams
2013-11-29 13:29:25 -06:00
parent b634722c8a
commit 20b32db5af

View File

@@ -861,6 +861,16 @@ sections:
input: '[65, 66, 67]'
output: ['"ABC"']
- title: `split`
body: |
Splits an input string on the separator argument.
examples:
- program: 'split(", ")'
input: '"a, b,c,d, e"'
output: ['["a","b,c,d","e"]']
- title: `recurse`
body: |