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

docs: clarify split behavior (#2462)

This commit is contained in:
Lucas Trzesniewski
2023-06-06 01:28:57 +02:00
committed by GitHub
parent 90bfa96249
commit b7f9587bb9

View File

@@ -1612,6 +1612,9 @@ sections:
Splits an input string on the separator argument.
`split` can also split on regex matches when called with
two arguments (see the regular expressions section below).
examples:
- program: 'split(", ")'
input: '"a, b,c,d, e, "'
@@ -2425,7 +2428,10 @@ sections:
- title: "`split(regex; flags)`"
body: |
For backwards compatibility, `split` splits on a string, not a regex.
Splits an input string on each regex match.
For backwards compatibility, when called with a single argument,
`split` splits on a string, not a regex.
example:
- program: 'split(", *"; null)'