$getTextSplitLength
$getTextSplitLength will return the amount of split arguments in $textSplit.
Usage
$getTextSplitLengthExample(s)
This will return 5 as there are five arguments separated by commas given in $textSplit
1client.command({2 name: "getTextSplitLength",3 code: `4 $getTextSplitLength5 $textSplit[Hello, my, name, is, Leref;, ]6 `7});