summaryrefslogtreecommitdiffstats
path: root/docs/content/3.manual/manual.yml
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/3.manual/manual.yml')
-rw-r--r--docs/content/3.manual/manual.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/docs/content/3.manual/manual.yml b/docs/content/3.manual/manual.yml
index 801b4b21..e64de245 100644
--- a/docs/content/3.manual/manual.yml
+++ b/docs/content/3.manual/manual.yml
@@ -1075,6 +1075,20 @@ sections:
input: '"a, b,c,d, e"'
output: ['["a","b,c,d","e"]']
+ - title: `join`
+ body: |
+
+ Joins the array of elements given as input, using the
+ argument as separator. It is the inverse of `split`: that is,
+ running `split("foo") | join("foo")` over any input string
+ returns said input string.
+
+ examples:
+ - program: 'join(", ")'
+ input: '["a","b,c,d","e"]'
+ output: ['"a, b,c,d, e"']
+
+
- title: `recurse`
body: |