Skip to content

$joinSplitText

$joinSplitText will join all text split elements by a given separator.

Usage

$joinSplitText[sep?]

Parameters

FieldTypeDescriptionRequired
sep?numberSeparator to separate multiple returned values.false

Example(s)

This will join all text split elements with a comma:

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