summaryrefslogtreecommitdiffstats
path: root/docs/content/manual/manual.yml
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/manual/manual.yml')
-rw-r--r--docs/content/manual/manual.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/docs/content/manual/manual.yml b/docs/content/manual/manual.yml
index ba2486c1..f2000f6f 100644
--- a/docs/content/manual/manual.yml
+++ b/docs/content/manual/manual.yml
@@ -1772,6 +1772,25 @@ sections:
input: '["fo", "foo", "barfoo", "foobar", "foob"]'
output: ['["fo","","bar","foobar","foob"]']
+ - title: "`trim`, `ltrim`, `rtrim`"
+ body: |
+
+ `trim` trims both leading and trailing whitespace.
+
+ `ltrim` trims only leading (left side) whitespace.
+
+ `rtrim` trims only trailing (right side) whitespace.
+
+ Whitespace characters are the usual `" "`, `"\n"` `"\t"`, `"\r"`
+ and also all characters in the Unicode character database with the
+ whitespace property. Note that what considers whitespace might
+ change in the future.
+
+ examples:
+ - program: 'trim, ltrim, rtrim'
+ input: '" abc "'
+ output: ['"abc"', '"abc "', '" abc"']
+
- title: "`explode`"
body: |