summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Williams <nico@cryptonector.com>2013-11-29 13:29:25 -0600
committerNicolas Williams <nico@cryptonector.com>2013-12-04 18:21:40 -0600
commit20b32db5af37c322e3116cbc646b8b60974460e6 (patch)
tree71b64792fd5c0fe1df65c229ccc5ede641edd597
parentb634722c8a972311c18888233537280d5d506537 (diff)
Document split function
-rw-r--r--docs/content/3.manual/manual.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/content/3.manual/manual.yml b/docs/content/3.manual/manual.yml
index 8832ceb2..876704c2 100644
--- a/docs/content/3.manual/manual.yml
+++ b/docs/content/3.manual/manual.yml
@@ -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: |