summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--docs/content/manual/manual.yml8
1 files changed, 7 insertions, 1 deletions
diff --git a/docs/content/manual/manual.yml b/docs/content/manual/manual.yml
index e3d7e209..ffaefe5a 100644
--- a/docs/content/manual/manual.yml
+++ b/docs/content/manual/manual.yml
@@ -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)'