Skip to content

$concatTextSplit

$concatTextSplit will concatenates the text with the given separator.

Usage

$concatTextSplit[...text]

Parameters

FieldTypeDescriptionRequired
textstringText to concat to the existing textSplit elements.true

Example(s)

This will add Hello, Bye to the already used $textSplit argument:

1
client.command({
2
name: "concatTextSplit",
3
code: `
4
$concatTextSplit[Hello;Bye]
5
$textSplit[Good Morning, Goodnight;, ]
6
`
7
});