From b7f9587bb9f250dade2af7ff270be250b21673b0 Mon Sep 17 00:00:00 2001 From: Lucas Trzesniewski Date: Tue, 6 Jun 2023 01:28:57 +0200 Subject: docs: clarify split behavior (#2462) --- docs/content/manual/manual.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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)' -- cgit v1.2.3