Skip to content

$getTextSplitLength

$getTextSplitLength will return the amount of split arguments in $textSplit.

Usage

$getTextSplitLength

Example(s)

This will return 5 as there are five arguments separated by commas given in $textSplit

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