This is an automated email from the ASF dual-hosted git repository.
kirs pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-seatunnel.git
The following commit(s) were added to refs/heads/dev by this push:
new 24247138 [hotfix][doc] Add escape description of split (#1666)
24247138 is described below
commit 24247138e39be30ea47286954d96d72fc1fb69f4
Author: Wenjun Ruan <[email protected]>
AuthorDate: Wed Apr 6 20:41:17 2022 +0800
[hotfix][doc] Add escape description of split (#1666)
---
docs/en/transform/split.mdx | 1 +
1 file changed, 1 insertion(+)
diff --git a/docs/en/transform/split.mdx b/docs/en/transform/split.mdx
index 39bdcff0..ecfe3871 100644
--- a/docs/en/transform/split.mdx
+++ b/docs/en/transform/split.mdx
@@ -35,6 +35,7 @@ This transform both supported by engine Spark and Flink.
### separator [string]
Separator, the input string is separated according to the separator. The
default separator is a space `(" ")` .
+Note: If you use some special characters in the separator, you need to escape
it. e.g. "\\|"
### source_field [string]